Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi,
I am using Power BI Desktop.
How to format a specific row as Currency in a Table visual?
For example, I want to format the 2nd row values as Currency (i.e. add a $ sign) in the following Table. Is this possible?
Solved! Go to Solution.
Hi @Anonymous ,
Try the following formula:
Measure =
IF(
MAX('Table'[id])="B",
CURRENCY(SUM('Table'[value])),
FORMAT(
SUM('Table'[value]),
"0"
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Try the following formula:
Measure =
IF(
MAX('Table'[id])="B",
CURRENCY(SUM('Table'[value])),
FORMAT(
SUM('Table'[value]),
"0"
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
In some cases, it is possible by using Tabular Editor in Power BI.
If it is OK with you, can you share your sample pbix file? Then I can try to come up with a desirable solution.
Thanks.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster.