Forum Discussion
Anonymous
8 years agoNot applicable
Getting earliest date field when someone is available
Hi Everyone, first time posting and I really love the tool. I'm trying to pull a value from a table to see the earliest date someone is available? I would I go about doing this? ...
- 8 years ago
You could pull a version of the table where you:
Filter to only Available = yes
Group on name, by the min of the Period.
Here's an example on one of my queries just to show where these options are.
- 8 years ago
Anonymous
Hi, One way without DAX is:
Regards
Victor
Lima - Peru
- 8 years ago
Hi,
Try this Measure
=CALCULATE(MIN(Data[Period]),Data[Available]="Yes")
Hope this helps.
Vvelarde
8 years agoCommunity Champion
Anonymous
Hi, One way without DAX is:
Regards
Victor
Lima - Peru