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
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

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
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.