Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi all,
Here is what I have:
Table 1:
ID | Date Started | Action |
100200300 | 2021-03-12 5:00 PM | Install |
100200300 | 2021-03-10 3:00PM | Open Hole |
100200300 | 2021-03-14 6:30 AM | Abandon |
I want to create a measure to pull a specific 'Action' row based on the date being max, min or in between (med).
Thanks
Solved! Go to Solution.
Hi @drogzy
you slice by date and use simple
MAX, MIN, AVERAGE to get the desired date
In order to get the Action for example
Action of Min. Date =
CALCULATE (
SELECTEDVALUE ( TableName[Action] ),
TableName[Date Sarted] = MIN ( TableName[Date Sarted] )
)
Hi @drogzy
you slice by date and use simple
MAX, MIN, AVERAGE to get the desired date
In order to get the Action for example
Action of Min. Date =
CALCULATE (
SELECTEDVALUE ( TableName[Action] ),
TableName[Date Sarted] = MIN ( TableName[Date Sarted] )
)
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
8 | |
7 |