Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
how i can find the minimun(the first date for each item) date for each item in this tabale with dax ?
date item min date?
2/1/17 3
1/1/17 3
6/7/17 4
5/5/17 4
Solved! Go to Solution.
As a calculated column:
= CALCULATE ( MIN (Table[date]), ALLEXCEPT ( Table[item] ) )
as a measure it depends on other filters in place.
Adding to @mattbrice's answer, please put table first, then column in ALLEXCEPT()
Measure = CALCULATE(MIN(Table1[Date]),ALLEXCEPT(Table1,Table1[Item]))
And make sure your Item column is not summarized.
Regards,
Adding to @mattbrice's answer, please put table first, then column in ALLEXCEPT()
Measure = CALCULATE(MIN(Table1[Date]),ALLEXCEPT(Table1,Table1[Item]))
And make sure your Item column is not summarized.
Regards,
Thank
As a calculated column:
= CALCULATE ( MIN (Table[date]), ALLEXCEPT ( Table[item] ) )
as a measure it depends on other filters in place.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
109 | |
107 | |
92 | |
68 |
User | Count |
---|---|
167 | |
130 | |
129 | |
95 | |
91 |