Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I need help creating a visual that looks similar to this. May it be solved with Dax?
A visual showing the invoiced orders for a specific month. I'm not interested to see any values of the sales orders. I have a date table and the order numbers. I believe it should be simple, but I have not suceeded after trying and googling for hours.
This is the closest I have to get a solution, but I want to see the sales order numbers in the "boxes", not as legends outside the graph. It's also quite messy 🙂
Thanks in advance!
Solved! Go to Solution.
@P-Lag
Try to to use "Tab" as a delimiter
=
CONCATENATEX (
VALUES ( Sales[Order Number] ),
Sales[Order Number],
" ",
Sales[Order Number], ASC
)
Such visual would be much more complex. Try to avoid going into such complexity unless greatly needed.
Hi @P-Lag
the simplest solution would be
CONCATENATEX ( VALUES ( Sales[Order Number] ), Sales[Order Number], UNICHAR ( 10 ), Sales[Order Number], ASC )
Hi
It worked! This help made my day - A big thank you!
Now I have two following questions 🙂 Is it also possible to invert the range like this?
And also, is it possible to create a visual like this - that is more graphic 🙂
Thank you in advance 🙂
@P-Lag
Try to to use "Tab" as a delimiter
=
CONCATENATEX (
VALUES ( Sales[Order Number] ),
Sales[Order Number],
" ",
Sales[Order Number], ASC
)
Such visual would be much more complex. Try to avoid going into such complexity unless greatly needed.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 35 | |
| 31 | |
| 20 | |
| 13 | |
| 10 |