Forum Discussion
Anonymous
4 years agoNot applicable
Displaying Ratio on Multi-Row Card
The goal is to display a ratio on a multi-row card. I am aware that the multi-row card can only display numbers but looking for advice on how to make this work. I tried to convert both the entire rat...
- 4 years ago
You can display text in multi-row cards. Are you getting an error that makes you think otherwise? If so, the root cause is not the visual's capabilities.
Example:
Number = 87462 Percent = .12365 Ratio1 = 10 & " / " & 3 Ratio2 = 30 & " / " & 1 Ratio3 = 2 & " / " & 5 Text = "Hello World!" - Anonymous4 years ago
MarkLaf thanks for the advice. I ultimately had to get rid of all the fields and drop them back in to get the formatting corrected. This put the ratio into the correct format.
VijayP
4 years agoCommunity Champion
Anonymous
Format(Divide(Numerator,Denominator),"%") and see whether it works!