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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
Is there any way we can show our power bi data in the below format
Any help would be appreciated
Thanks
Solved! Go to Solution.
@Anonymous ,
you can create one table manually and then show these values in Multi row card.
Thanks,
Arul
Hello @Anonymous ,
I am assuming all these numbers are measures you created. You can concatenate the measures and move to next line using UNICHAR(10) and show it in card visual.
Also you can use UNICHAR(129182) for adding a dot symbol in starting.
Try something as -
Measure =
UNICHAR(129182)&" "&[TotalMeasure]&" -Total"&UNICHAR(10)
UNICHAR(129182)&" "&[UniqueHeadMeasure]&" -Unique Head"&UNICHAR(10)
UNICHAR(129182)&" "&[TrainingMeasure]&" Hrs-Training"&UNICHAR(10)
UNICHAR(129182)&" "&[TotalTrainingMeasure]&" -Total Training"
Please mark it as answer if it resolves your issue. Kudos are also appreciated.
Hello @Anonymous ,
I am assuming all these numbers are measures you created. You can concatenate the measures and move to next line using UNICHAR(10) and show it in card visual.
Also you can use UNICHAR(129182) for adding a dot symbol in starting.
Try something as -
Measure =
UNICHAR(129182)&" "&[TotalMeasure]&" -Total"&UNICHAR(10)
UNICHAR(129182)&" "&[UniqueHeadMeasure]&" -Unique Head"&UNICHAR(10)
UNICHAR(129182)&" "&[TrainingMeasure]&" Hrs-Training"&UNICHAR(10)
UNICHAR(129182)&" "&[TotalTrainingMeasure]&" -Total Training"
Please mark it as answer if it resolves your issue. Kudos are also appreciated.
Hi @Shishir22
unichar(10) is not adding line break to the measure
So is there any other way we can add line break in this.
Sorry, use this -
Measure =
UNICHAR(129182)&" "&[TotalMeasure]&" -Total"&UNICHAR(10)&
UNICHAR(129182)&" "&[UniqueHeadMeasure]&" -Unique Head"&UNICHAR(10)&
UNICHAR(129182)&" "&[TrainingMeasure]&" Hrs-Training"&UNICHAR(10)&
UNICHAR(129182)&" "&[TotalTrainingMeasure]&" -Total Training"
Unichar(10) is working fine for me.
I hope you are creating a measure and putting that in card. It is giving expected result for me.
Refer below screenshot.
@Anonymous ,
you can create one table manually and then show these values in Multi row card.
Thanks,
Arul
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 |
|---|---|
| 104 | |
| 82 | |
| 72 | |
| 46 | |
| 35 |