The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
120 | |
87 | |
75 | |
53 | |
45 |
User | Count |
---|---|
135 | |
128 | |
77 | |
64 | |
64 |