Hello friends, today I am going to discuss How to Generate QR codes for Salesforce Object. We will show the QR code for the Account object by its record Id. You also can use unique key for qr code.
Also check this: Inline Editing in lightning-datatable in LWC Salesforce
QR codes are a type of barcode that can be easily read by a digital device and that stores information as a series of pixels in a square-shaped grid. Marketing and advertising campaigns frequently use QR codes to track information about products in a supply chain.
Step 1: In this step, we will create a formula fields name QR Code.
Go to Setup > Object Manager tab > Account
Step 2: Create a formula field name QR Code and the formula type will be text. Below is my formula .
IMAGE('https://chart.googleapis.com/chart?chs=250x250&cht=qr&chl='+ Id,'test')
Step 3: Now open any Account records check the QR code.