The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!
User | Count |
---|---|
20 | |
8 | |
7 | |
7 | |
6 |
User | Count |
---|---|
29 | |
12 | |
11 | |
9 | |
8 |