Hello Community,
I build Power Apps to show data from D365FO.
When selecting criteria from 'Data table' I like to show selected value as barcode on screen.
Can Power Apps translate numeric value to barcode to screen?
B.R. Jussi
Hello,
after the search from web (and help from my colleague) I managed to get readable barcode to screen.
This link helped: https://powerusers.microsoft.com/t5/Power-Apps-Ideas/Barcode-Generation/idi-p/7363/page/2#comments
I attached screenshot how I used barcode image point to URL.
Hi @Anonymous ,
If you want to translate numeric value to bar code font by selecting bar code font from list, I afraid that there is no way to achieve your needs in PowerApps currently.
As an alternative solution, please add a Image control along side the Data Table, set the Image property to following:
"https://chart.googleapis.com/chart?cht=qr&chs=320x320&chl=" & DataTable.Selected.'Purchase order'
Best regards,
Thanks for your replies,
need is show bar code on tablet what user can read by scanner.
I added screenshot to demonstrate stripped need.
Bar codes are fonts. I was thinking is it possible translate numeric value to bar code font by selecting bar code font from list.
(Value '00005' should be bar code).
B.R. Jussi
Hi @Anonymous ,
Do you want to display a number value as a barcode within your canvas screen?
Based on the needs that you mentioned, I afraid that there is no direct way to achieve your needs in PowerApps. As an alternative solution, I agree with @Anonymous 's thought almost.
Please consider add a Image control in your app, set the Image property to following:
"https://chart.googleapis.com/chart?cht=qr&chs=320x320&chl=" & 450
On your side, you should type:
"https://chart.googleapis.com/chart?cht=qr&chs=320x320&chl=" & DataTable1.Selected.NumberColumn
Best regards,
Yes, this can be done. using an Image control, you can use Google's QR API to generate a QR code like this:
"https://chart.googleapis.com/chart?chs=150x150&cht=qr&choe=UTF-8&chl=" & yourData
Where yourData is the data you want to add to the QR code.
Here's Google's docs
https://developers.google.com/chart/infographics/docs/qr_codes
---
If this answered your question, please click "Accept Solution". If this helped, please Thumbs Up.
Can you give an example or show a screenshot
WarrenBelz
110
Most Valuable Professional
MS.Ragavendar
81
stampcoin
54