Forum Discussion
Sudharshan1919
Helper III
4 years agoLatest Date
Hi All, I am having 3 region sheets like Region1, Region2 and Region3. Those files get updated on a daily basis 4-5 times per day including with the timestamp, where the data is stored in the "Da...
- 4 years ago
Something like this should work as a calculated column
Latest date = VAR CurrentDate = 'Table'[Date time] VAR MaxDate = CALCULATE ( MAX ( 'Table'[Date time] ), ALLEXCEPT ( 'Table', 'Table'[Region] ) ) RETURN IF ( CurrentDate = MaxDate, "Yes" )
johnt75
Super User
4 years agoSomething like this should work as a calculated column
Latest date =
VAR CurrentDate = 'Table'[Date time]
VAR MaxDate =
CALCULATE ( MAX ( 'Table'[Date time] ), ALLEXCEPT ( 'Table', 'Table'[Region] ) )
RETURN
IF ( CurrentDate = MaxDate, "Yes" )