Forum Discussion
Power Bi custom font
- 4 years ago
Hi Anonymous ,
From official documents, the barcode data category is used to filter report by scanning the barcode in real world. For example, the corresponding product number of a barcode is 7290010237530, also there is a productNo field in desktop containing this value. When we scan the barcode of the real product, we can view its related report generated in Desktop. For details, please have a look at this video.
If you want to display barcode in Power BI, please using the barcode api instead of qrcode. https://github.com/metafloor/bwip-js/wiki/Online-Barcode-API
This is my test, I add a calculated column:
Barcode API = "http://bwipjs-api.metafloor.com/?bcid=" & "code128&text=" & [Barcode]Then set the data category of [Barcode API] as Image URL.
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
From official documents, the barcode data category is used to filter report by scanning the barcode in real world. For example, the corresponding product number of a barcode is 7290010237530, also there is a productNo field in desktop containing this value. When we scan the barcode of the real product, we can view its related report generated in Desktop. For details, please have a look at this video.
If you want to display barcode in Power BI, please using the barcode api instead of qrcode. https://github.com/metafloor/bwip-js/wiki/Online-Barcode-API
This is my test, I add a calculated column:
Barcode API = "http://bwipjs-api.metafloor.com/?bcid=" & "code128&text=" & [Barcode]
Then set the data category of [Barcode API] as Image URL.
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is realy cool!
I just replaced code128 by code39 since I noticed he mentioned Libre Barcode 39 and it is working.