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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors
Top Kudoed Authors