Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
mravi0712
New Member

DAX Filters Formula

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..!!!

 

 

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

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 

View solution in original post

prateekraina
Memorable Member
Memorable Member

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

View solution in original post

2 REPLIES 2
prateekraina
Memorable Member
Memorable Member

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

Anonymous
Not applicable

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 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.