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
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
118 | |
75 | |
65 | |
51 | |
49 |
User | Count |
---|---|
184 | |
104 | |
82 | |
79 | |
78 |