Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
12 | |
10 | |
6 |