Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
90 | |
82 | |
57 | |
41 | |
39 |