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
MSMKM
Helper I
Helper I

4th highest revenue generating product

Hi Team,

 

Need to find out the 4th highest revenue generating product

 

here the data

 

orderno, productName, revenue
1,a,100
2,b,200
3,c,300
4,d,50
5,e,800

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @MSMKM 
Please try

4th Highest Product =
MAXX (
    TOPN (
        1,
        TOPN (
            4,
            VALUES ( 'Table'[productName] ),
            CALCULATE ( SUM ( 'Table'[revenue] ) ), DESC
        ),
        CALCULATE ( SUM ( 'Table'[revenue] ) ), ASC
    ),
    'Table'[productName]
)

View solution in original post

1 REPLY 1
tamerj1
Super User
Super User

Hi @MSMKM 
Please try

4th Highest Product =
MAXX (
    TOPN (
        1,
        TOPN (
            4,
            VALUES ( 'Table'[productName] ),
            CALCULATE ( SUM ( 'Table'[revenue] ) ), DESC
        ),
        CALCULATE ( SUM ( 'Table'[revenue] ) ), ASC
    ),
    'Table'[productName]
)

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.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.