The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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