Forum Discussion
Max Value from the all column
- 5 years ago
I'm not sure how you've tried but it should work. See it all at play in the attached file, where the latest (max) date in the column is 31/12/2020
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
- 5 years ago
You're quite right. It doesn't work well. Try this improved version:
LTM status V2 = VAR max_ = MAX ( Table1[Date] ) VAR date1_ = EDATE(max_,-12) VAR date2_ = EDATE(max_,-24) RETURN SWITCH ( TRUE(), Table1[Date] > date1_, "LTM", Table1[Date] > date2_, "LTM-1", "N/A" )You might want to change the inequality depending on where you want to include the edge dates
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
I'm not sure how you've tried but it should work. See it all at play in the attached file, where the latest (max) date in the column is 31/12/2020
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
- hyugo_v5 years agoHelper I
it works indeed for the last date but when i can change the last Date for example to 21/10/2020 then the LTM will go from 01/01/2020 to last Date and not from 21/10/2020 to 21/10/2019. But still, thank you for your help !