Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
I was wondering how to return the minimum date based on a measure value
I have the table here where created_at is a column in another table 'BudgetViewSnapshot' and subunboughtcount is a measure in a table 'NewSSDetail'
The desired return result would be the minimum date that the subunboughtcount turns to 0. So in this table it would be 12/6/21.
Thanks,
Solved! Go to Solution.
Min Date = MINX( FILTER(BudgetViewSnapshot, [subunboughtcount] = 0), [created_at])
Min Date = MINX( FILTER(BudgetViewSnapshot, [subunboughtcount] = 0), [created_at])
Worked great. Thanks!
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 8 | |
| 7 | |
| 6 |