I have 2 percentage measures in separate cards (e.g. 10% and 20%). I want to add a "/" slash sign between them (like this: 10% / 20%). How can I do this? I thought one way would be to add this sign to the end of the first formula, but it makes my percentage formula to a text. What would you advice me? Thank you in advance.
you can have a final measure as below-
final_measure = CONCATENATE(CONCATENATE(CONCATENATE(FORMAT([measure_1]*100.00,"##0.00"),"% / "),FORMAT([measure_2]*100,"##0.00")),"%")
here is a sample output-