I am looking for a DAX formula for a calculated column.
I want to see the earliest start, which must be the same [Date] and [Name].
Solved! Go to Solution.
Hi @brief001
please try
Earliest Start =
MINX (
CALCULATETABLE (
Table_Roster,
ALLEXCEPT ( Table_Roster, Table_Roster[Date], Table_Roster[Name] )
),
Table_Roster[Start]
)
Hi @brief001
please try
Earliest Start =
MINX (
CALCULATETABLE (
Table_Roster,
ALLEXCEPT ( Table_Roster, Table_Roster[Date], Table_Roster[Name] )
),
Table_Roster[Start]
)
Thanks for the quick response. Your formula is clear to me. Also immediately looked up something about 'ALLEXCEPT'. I can probably use this more often.
Thanks!
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
104 | |
58 | |
45 | |
29 | |
24 |
User | Count |
---|---|
133 | |
94 | |
75 | |
44 | |
41 |