Generate codes for URLs, WiFi, SMS, and more. Instantly, QR Code Support Excel
Generate QR codes in Excel with the IMAGE function. Assume cell A1 has the content.
=IMAGE("https://qrexcel.pro/qr.php?d=" & ENCODEURL(A1) & "&size=300x300", "QR qrexcel.pro")
=IMAGE("https://qrexcel.pro/qr.php?d=" & ENCODEURL(A1) & "&size=300x300&color=000000&bg=FFFFFF", "QR qrexcel.pro")
=IMAGE("https://qrexcel.pro/qr?d=" & ENCODEURL(A1) & "&size=300x300", "QR qrexcel.pro")
💡 Tip: Use ENCODEURL (Excel 2013+). Adjust cell size to fit the QR code.
Generate QR codes in Google Sheets with the IMAGE function. Assume cell A1 contains the text/URL you want to encode.
=IMAGE("https://qrexcel.pro/qr.php?d=" & ENCODEURL(A1) & "&size=300x300")
=IMAGE("https://qrexcel.pro/qr.php?d=" & ENCODEURL(A1) & "&size=300x300&color=000000&bg=FFFFFF")
In Google Sheets, IMAGE(url, mode, height, width) supports mode = 4 to set exact pixel size.
=IMAGE("https://qrexcel.pro/qr.php?d=" & ENCODEURL(A1), 4, 300, 300)
Append a cache-buster so the QR updates immediately when data changes.
=IMAGE("https://qrexcel.pro/qr.php?d=" & ENCODEURL(A1) & "&size=300x300&cb=" & RANDBETWEEN(1, 10^9))
💡 Tips: Use ENCODEURL to safely pass content; adjust cell row/column size for best display. For bulk generation, fill the formula down the column or use ARRAYFORMULA.
Tools → Script editor, then add this function. Use it as =QREXCEL(A1, "300x300") and wrap with IMAGE().
/** @customfunction */
function QREXCEL(text, size) {
var s = (size || "300x300").toString();
var q = encodeURIComponent(text || "");
return "https://qrexcel.pro/qr.php?d=" + q + "&size=" + encodeURIComponent(s);
}
Example:
=IMAGE(QREXCEL(A1, "300x300"))
Insert QR codes directly in Word using the Insert Picture feature or a VBA macro.
qrexcel-qr.png file and insert it into your slide.Alt+F11 to open the VBA editor.Sub InsertQR()
Dim u As String
u = "https://qrexcel.pro/qr.php?d=qrexce.pro&size=150x150"
Selection.InlineShapes.AddPicture FileName:=u, LinkToFile:=False, SaveWithDocument:=True
End Sub
Alt+F8, select InsertQR, and run it.
💡 Tip: Change the text after d= in the URL to generate a QR code for your own text, link, or data.
Example: https://qrexcel.pro/qr.php?d=YourCustomText&size=300x300
Insert QR codes directly in PowerPoint using the Insert Picture feature or a VBA macro.
qrexcel-qr.png file and insert it into your slide.Alt+F11 to open the VBA editor.Sub InsertQR()
Dim slide As Slide
Dim url As String
url = "https://qrexcel.pro/qr.php?d=YourCustomText&size=300x300"
Set slide = ActivePresentation.Slides(ActiveWindow.View.Slide.SlideIndex)
slide.Shapes.AddPicture url, msoFalse, msoTrue, 100, 100, -1, -1
End Sub
Alt+F8, select InsertQR, and click Run.
💡 Tip: Replace YourCustomText in the VBA code with your desired text, URL, or data (e.g., https://qrexcel.pro/qr.php?d=https://example.com&size=300x300).
Click a swatch to copy its hex code to 'Color' or 'Background'.
| Color | Name | Hex Code |
|---|---|---|
| Black | #000000 |
|
| White | #FFFFFF |
|
| Red | #FF0000 |
|
| Lime | #00FF00 |
|
| Blue | #0000FF |
💡 Note: White sets the background; others set the QR color.
Create QR codes in seconds with our intuitive tool.
Adjust size, colors, and types to suit your needs.
Reliable QR codes optimized for scanning.