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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
NPIV5
Regular Visitor

retrieve next rank up value

I have a geography lookup table, date table and a fact table. I have a rank of sales, and I want to retrieve the location of the next store up in the rankings. I have created a measure that retrieves the sales amount of the next store up, but I can't get the location to work. DAX for value is below:

 

Value of Rank Above =
VAR index = [Rank] - 1
RETURN
CALCULATE (
SUM ( FACT[sales] ),
FILTER ( ALL (geo), index = [Rank] )
)
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@NPIV5 , Like ?

location of Rank Above =
VAR index = [Rank] - 1
RETURN
CALCULATE (
Max( FACT[Location] ),
FILTER ( ALL (geo), index = [Rank] )
)

 

or

 

location of Rank Above =
VAR index = [Rank] - 1
RETURN
CALCULATE (
Max( geo[Location] ),
FILTER ( ALL (geo), index = [Rank] )
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@NPIV5 , Like ?

location of Rank Above =
VAR index = [Rank] - 1
RETURN
CALCULATE (
Max( FACT[Location] ),
FILTER ( ALL (geo), index = [Rank] )
)

 

or

 

location of Rank Above =
VAR index = [Rank] - 1
RETURN
CALCULATE (
Max( geo[Location] ),
FILTER ( ALL (geo), index = [Rank] )
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

Top Solution Authors