Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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.
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] ), "" )
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 !
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
Hello@sdlx
I have created a sample data for this:
MAX Date = MAXX(Sheet1,IF(COUNTBLANK(Sheet1[Date]) = 0,Sheet1[Date]))
You should get the following result:
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 ?
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 38 | |
| 33 | |
| 19 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 66 | |
| 41 | |
| 34 | |
| 24 |