Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
25 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
25 | |
12 | |
11 | |
10 | |
6 |