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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All
Please help me to write the below statement in Power BI?
CASE WHEN `TableA`='-' THEN 0 ELSE CONCAT(`TableA`,'0') END
Many Thanks
Solved! Go to Solution.
Hi @kh0050 ,
If you need a calculated column ,use below dax expression:(based on my sample table)
Column = IF('Table'[A]="-","0",'Table'[A]&0)
If you need a measure,use below dax expression:
Measure = IF(MAX('Table'[A])="-",0,MAX('Table'[A])&0)
For both method,you would see:
For my sample .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
Thank you so much Kelly!
Hi @kh0050 ,
If you need a calculated column ,use below dax expression:(based on my sample table)
Column = IF('Table'[A]="-","0",'Table'[A]&0)
If you need a measure,use below dax expression:
Measure = IF(MAX('Table'[A])="-",0,MAX('Table'[A])&0)
For both method,you would see:
For my sample .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.