Forum Discussion
New Card vs Multi-Row Card Results anomaly
Hi, mbahonen
Thank you very much for your reply. Your idea is good. But in my experience, if a default visual needs to add something, you need to put up an idea in the ideas forum, and then have enough votes for that feature to appear in the next upgrade.
Here is another way of thinking, which can be tedious, but can achieve the same goal:
Use UNICHAR(10) to pass to the text concatenation symbol or function, and then center the whole set:
Measure =
"Item A:" & CALCULATE(SUM(Salestable[amount]),'DIM_Items'[itemname] ="Item A") & UNICHAR(10) &
"Item B:" & CALCULATE(SUM(Salestable[amount]),'DIM_Items'[itemname] = "Item B")& UNICHAR(10) &
"Item C:" & CALCULATE(SUM(Salestable[amount]),'DIM_Items'[itemname] = "Item C")& UNICHAR(10) &
"Item D:" & CALCULATE(SUM(Salestable[amount]),'DIM_Items'[itemname] = "Item D")& UNICHAR(10) &
"Item E:" & CALCULATE(SUM(Salestable[amount]),'DIM_Items'[itemname] = "Item E")& UNICHAR(10)
This method lacks interactivity and lends itself well as a static card effect. In contrast, it is more convenient and effective to use custom vision pairs.
The following method is implemented with a table:
Finally, adjust the column width to achieve the same effect as a multi-row card
Best Regards
Jianpeng Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.