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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
sdlx
Helper I
Helper I

Max value except if null

I have one product with different date and I need to have only the maximum date for this product. The specificity is that for some product i have a date showing as "null" and in that case i need the null and not the maximum date.

Would it be a way with a  measure or column to have this ?

 

Thanks in advance for your help.

 

5 REPLIES 5
v-eachen-msft
Community Support
Community Support

Hi @sdlx ,

 

You could try the following measure.

Measure  =
VAR a =
    ADDCOLUMNS ( 'Table', "NULL", IF ( 'Table'[Date] = BLANK (), 0, 1 ) )
VAR b =
    PRODUCTX ( a, [NULL] )
RETURN
    IF ( b = 1, MAX ( 'Table'[Date] ), "" )

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

Hello !

 

Thanks for taking the time to help me.

Would it be a way to use your solution to create a custom column directly in the query editor ?

 

Thanks in advance for your time !

@v-eachen-msft 

amitchandak
Super User
Super User

Try

maxx(table,table[Date])
maxx(table,table[Date],allexpcept(table[product]))

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges

Connect on Linkedin

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
vivran22
Community Champion
Community Champion

Hello@sdlx 

 

 

I have created a sample data for this:

 

1.JPG

 

 

MAX Date = MAXX(Sheet1,IF(COUNTBLANK(Sheet1[Date]) = 0,Sheet1[Date]))

 

 

You should get the following result:

 

2.JPG

 

Regards,
Vivek

If it helps, please mark it as a solution

Kudos would be a cherry on the top 🙂

https://www.vivran.in/

Hello,

 

Thanks, it works !

I am noticing now that it would help me if I could have the same result as an addedd colum in the query editor.

In that colum I would have the maximum date for the product if no Null value.

If there is a null value for one line of a product then I would have null for all the line of this product.

 

Would you have an idea for that ?

@vivran22 @v-eachen-msft  @amitchandak 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors