Forum Discussion
Anonymous
7 years agoNot applicable
Selecting First Date and Time
I have a column of datetime data and I am trying to select the first date after filtering the table. I am using the following calculated column formula: First Date = CALCULATE(FIRSTDATE('Table'[...
- 7 years ago
Can you not just use MIN?
CALCULATE(MIN('Table'[Date].[Date]), FILTER('Table', 'Table'[TestID] = 'Table2'[TestID]))
Cmcmahan
7 years agoResident Rockstar
Can you not just use MIN?
CALCULATE(MIN('Table'[Date].[Date]), FILTER('Table', 'Table'[TestID] = 'Table2'[TestID]))