March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I would like to return the "Seq. #" that has the oldest "Date Open"
ould like to return the "Seq.#" with the oldest "Open Date"
Solved! Go to Solution.
Firstnonblankvalue(Table[date Open], Min([# Seq])
or
calculate(Firstnonblankvalue(Table[date Open], Min([# Seq]) , allselected())
@mhankila do you mean, the min date from all the rows? or by seq # wise.
If you want the min date of the column rows,
Then use below dax.
MinDate = CALCULATE(MIN([Date Open]), ALL(Table))
IF you want by Seq#
MinDate_By Category =
CALCULATE(MIN(data[Date Open]),ALLEXCEPT(data,data[seq #]))
Do accept the solution if it fulfills your need.
if a seq# is present, i would like to return the seq# according to the open date column
Firstnonblankvalue(Table[date Open], Min([# Seq])
or
calculate(Firstnonblankvalue(Table[date Open], Min([# Seq]) , allselected())
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |