How to create qr code based on cell value in Excel?
Do you know how to create QR code based on specific cell value in Excel? This article will show you a method to achieve it in details.
Create QR code based on cell value with Barcode Control and VBA code
Easily create multiple QR codes in bulk based on cell values with an amazing tool
Create QR code based on cell value with Barcode Control and VBA code
The Barcode Control can help you quickly create QR code based on cell value in Excel. Please do as follows.
1. Open the worksheet contains the cell value you will create QR Code based on.
2. Click Developer > Insert > More Control. See screenshot:
3. In the More Controls window, check for the Microsoft Barcode Control 16.0 or Microsoft Barcode Control 15.0.
4. If you didn’t find the Barcode Control in the More Controls window or the Barcode Control does not the 16.0 or 15.0, you need to download the barcode control file by clicking this links: download barcode control. If there is Barcode Control 16.0 or 15.0 in your More Controls window, just jump to below step 10.
After downloading the file, unzip it and then update the Barcode Control with the downloaded barcode control in your Excel as follows.
5. Close all your Excel workbooks, go to the Start section, find the Excel app and right click on it, then select Run as administrator from the context menu. See screenshot:
6. In the opening User Account Control dialog box, click the Yes button.
7. Then a new workbook is created. Please click Developer > Insert > More Control. See screenshot:
8. In the More Controls window, click Register Custom button, find and select one of the downloaded qr code OCX file and then click the Open button. See screenshot:
9. Click the OK button when it returns the More Controls window to finish the Barcode Control updated. Then reopen the workbook contains the cell values you will create QR Codes based on.
10. Right click the sheet tab and click View Code from the context menu to open the Microsoft Visual Basic for Applications window. Then copy and paste below VAB code into the Code window. And finally press the Alt + Q keys to exit the Microsoft Visual Basic for Applications window.
VBA code: Create QR code in Excel
Sub setQR()
'Updated by Extendoffice 2018/8/22
Dim xSRg As Range
Dim xRRg As Range
Dim xObjOLE As OLEObject
On Error Resume Next
Set xSRg = Application.InputBox("Please select the cell you will create QR code based on", "Kutools for Excel", , , , , , 8)
If xSRg Is Nothing Then Exit Sub
Set xRRg = Application.InputBox("Select a cell to place the QR code", "Kutools for Excel", , , , , , 8)
If xRRg Is Nothing Then Exit Sub
Application.ScreenUpdating = False
Set xObjOLE = ActiveSheet.OLEObjects.Add("BARCODE.BarCodeCtrl.1")
xObjOLE.Object.Style = 11
xObjOLE.Object.Value = xSRg.Text
ActiveSheet.Shapes.Item(xObjOLE.Name).Copy
ActiveSheet.Paste xRRg
xObjOLE.Delete
Application.ScreenUpdating = True
End Sub
11. Click Developer > Insert > Button (Form Control) as below screenshot shown.
12. Draw a button into current worksheet. In the popping up Assign Macro dialog, select setQR in the box and then click the OK button.
13. Turn off the Design Mode by clicking Developer > Design Mode.
14. Click the button, in the opening Kutools for Excel dialog, select the cell you will create QR Code based on and click OK.
15. In the second Kutools for Excel dialog, select a cell to place the QR Code. See screenshot:
Then the QR Code will be inserted into specified cell immediately. Repeat step 14 to 15 to finish all QR Code created. See screenshot:
Easily create multiple QR codes in bulk based on cell values with an amazing tool
To be honest, the above method is not easy to handle as it has its own limitation. Here highly recommended the Insert QR Code feature of Kutools for Excel. This feature can help you quickly insert QR codes in bulk based on specified cell values in Excel with several clicks only. Please do as follows to get it done.
Before applying Kutools for Excel, please download and install it firstly.
1. Firstly, prepare your values that you want to create QR code based on.
2. Click Kutools > Insert > Insert QR Code.
Tips: If you can’t find the feature with this path, please press the Alt + S keys simultaneously to open the Search Kutools Functions box, manually type QR Code in the search box, then you can see the Insert QR Code feature is listed out, just click to activate the feature. See screenshot:
Now the Insert QR Code pane is displayed on the right side of the workbook.
3. In the Insert QR Code pane, you need to configure as follows.
4. Then a Kutools for Excel dialog box pops up, click OK.
5. Then the QR codes are created at the same time. You need to manually close the Insert QR Code pane if finish creating all QR codes.
Click to know more about this feature...
Related article:
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!















