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
HI Team,
I Have a table with two column.
Date Values
2017/01 20.6
2017/02 17.5
2017/03 19.4
2017/12 18.5
I have to create a DAX measure where in i have to get the Highest date Value displayed.
Like i have to get 18.5 as the output as the 2017/12 is the highest date.
And this we get it dynamically but not hard coded value.
Thanks In Advance..!!!
Solved! Go to Solution.
Hi
@mravi0712
Create this measure and place in card, you will get the desired result.
Measure = LOOKUPVALUE(Table1[Values],Table1[Date],MAX(Table1[Date]))
Thanks
Raj
Hi @mravi0712,
Just make sure the datatype of Date column is set to Date.
You can use the below measure:
Value = CALCULATE( VALUES(Table1[ Values]) ,FILTER(Table1 ,Table1[Date] = MAX(Table1[Date] ) ))
Prateek Raina
Hi @mravi0712,
Just make sure the datatype of Date column is set to Date.
You can use the below measure:
Value = CALCULATE( VALUES(Table1[ Values]) ,FILTER(Table1 ,Table1[Date] = MAX(Table1[Date] ) ))
Prateek Raina
Hi
@mravi0712
Create this measure and place in card, you will get the desired result.
Measure = LOOKUPVALUE(Table1[Values],Table1[Date],MAX(Table1[Date]))
Thanks
Raj
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 |