The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have a card displaying the count of items, and the display is: 23
I would like to be able to add parentheses around it, so that the display is: (23)
Looking through the format options for the card, I cannot see the possibility to add punctuation/text, as having a number floating around does not seem ideal.
Solved! Go to Solution.
Create a measure like below,
Count = '(' &COUNT(items) & ')'
Use it in a card visual.
Thanks,
Siva
Create a measure like below,
Count = '(' &COUNT(items) & ')'
Use it in a card visual.
Thanks,
Siva