Customize excel QR codes

Hi, I am using the template in How to generate QR codes with Excel or Google Sheets | QuickChart

Is it possible to use the customization QR code parameters in the excel formula?

For example my QR code URL in excel is =IF(ISBLANK(F4), “”, “https://quickchart.io/qr?text=”&ENCODEURL(F4))

I’m not sure how to append the parameters to this. If I try to add parameters after the ENCODEURL(F4) it does not work. Thanks!

Yes, it is possible. And example would be:

=IF(ISBLANK(F4), "", "https://quickchart.io/qr?text="&ENCODEURL(F4)&"&margin=4&size=250")

This is great! Thank you.