Forum Discussion
AishwariyaV
4 years agoHelper IV
DAX help
Hi all, I have one scenario where i have to find the maximum date and when there is no maximum date, it has to consider previous max date. Date Date2 Max date 12-01-2021 10-14-2021 12-16-...
- 4 years ago
Hi AishwariyaV ,
Test the measure like the below:
outputvalue = var test=MAXX ( FILTER ( ALL ( Sheet1 ), Sheet1[Date]= max(Sheet1[Date]) && format(Sheet1[Date],"YYYYMM")>=format(Sheet1[Date2],"YYYYMM") ), Sheet1[Date2] ) return CALCULATE(MAX(Sheet1[Value]),Sheet1[Date2]=test)Output:
Did I answer your question? Mark my post as a solution!
Best RegardsLucien
darshaningale
4 years agoResolver II
Can you keep only date1 and date2 and provide sample required result in an excel and provide ?
Regards,
DI
- AishwariyaV4 years agoHelper IV
Sample data :
Date Date2 Value 12-01-2021 10-14-2021 12 12-01-2021 10-15-2021 34 12-01-2021 11-16-2021 38 12-01-2021 12-15-2021 63 12-01-2021 12-16-2021 13 12-01-2021 02-15-2022 98 01-01-2022 10-14-2021 34 01-01-2022 10-15-2021 65 01-01-2022 11-16-2021 77 01-01-2022 12-15-2021 23 01-01-2022 02-14-2022 45 01-01-2022 02-15-2022 60 02-01-2022 10-14-2021 20 02-01-2022 10-15-2021 39 02-01-2022 11-16-2021 88 02-01-2022 12-15-2021 43 02-01-2022 01-16-2022 90 02-01-2022 02-15-2022 54 Result :
Month from Date column Value Dec21 13 Jan22 23 Feb22 54 - darshaningale4 years agoResolver II
AishwariyaV Create below calculated column and add to the table. Hope you get your answer.
MaxDate2withrespecttoDate =
VAR cDate = Sheet1[Date].[Date]
RETURN
MAXX (
FILTER (
ALL ( Sheet1 ),
Sheet1[Date].[Date] = cDate
&& Sheet1[Date2].[Date] < Sheet1[Date].[Date]
),
Sheet1[Date2].[Date]
)Regards
DI