Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register 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
User | Count |
---|---|
84 | |
76 | |
70 | |
48 | |
39 |
User | Count |
---|---|
111 | |
56 | |
51 | |
42 | |
41 |