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
neees78
Advocate I
Advocate I

DAX expression for new column

Hello All, 

I've long table (+25 columns - all of date type) 

 

neees78_0-1624291251644.png

need DAX  for calculated column - just showing total number of records per  row. 

 

if 1 row has 3 date columns populated - then in my calculated column it should show 3 

 

hopefully this is easy ? 

 

thanks

 

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

Hi @neees78 ,

 

If you want to use calculated column, you need to unpivot all these columns. But you can add custom column in query editor since the blanl value show null in power query:

 

= Table.AddColumn(#"Replaced Value", "Custom", each List.Count(List.RemoveNulls(Record.ToList(_))))

 

Capture33.PNG

 

For more details, please refer to the pbix file.

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

View solution in original post

2 REPLIES 2
v-deddai1-msft
Community Support
Community Support

Hi @neees78 ,

 

If you want to use calculated column, you need to unpivot all these columns. But you can add custom column in query editor since the blanl value show null in power query:

 

= Table.AddColumn(#"Replaced Value", "Custom", each List.Count(List.RemoveNulls(Record.ToList(_))))

 

Capture33.PNG

 

For more details, please refer to the pbix file.

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

jthomson
Solution Sage
Solution Sage

It'd be easier if you unpivoted those columns, but if for whatever reason you can't, you could just do some sort of monster if - isblank formula?

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.