Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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] )
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |