Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
kh0050
Frequent Visitor

Count Statement in Power BI - Urgent

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

 

1 ACCEPTED SOLUTION
v-kelly-msft
Community Support
Community Support

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:

v-kelly-msft_2-1621242058127.png

 

For my sample .pbix file,pls see attached.

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

 

View solution in original post

2 REPLIES 2
kh0050
Frequent Visitor

Thank you so much Kelly!

v-kelly-msft
Community Support
Community Support

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:

v-kelly-msft_2-1621242058127.png

 

For my sample .pbix file,pls see attached.

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors