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 have two columns, one being Solar percentage and another is a date field. I want to retreive the value of the most recent date. how do I do this ?
Solved! Go to Solution.
Hi @Kolumam,
You try a measure like this:
Measure = VAR maxDate = CALCULATE ( MAX ( 'Table1'[Date] ), ALL ( Table1 ) ) RETURN CALCULATE ( MIN ( 'Table1'[Value] ), 'Table1'[Date] = maxDate )
Best Regards!
Dale
Hi Dale, just trying to understand why you are using calculate (min in your code. Is that because that is the only way to bring back a single value, and you have to do it as a kind of pseudo calculation? I have a similar need where I have to return a value based on a date, and am thinking this will work for me. But it's not really a calculation, I am just saying on the latest date, what is the rating (column value), all in the same table. I guess this would work as I haven't seen a different solution.
Hi @Kolumam,
You try a measure like this:
Measure = VAR maxDate = CALCULATE ( MAX ( 'Table1'[Date] ), ALL ( Table1 ) ) RETURN CALCULATE ( MIN ( 'Table1'[Value] ), 'Table1'[Date] = maxDate )
Best Regards!
Dale
Thanks.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
63 | |
53 | |
39 | |
25 |
User | Count |
---|---|
85 | |
57 | |
45 | |
43 | |
38 |