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

Be 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

Reply
Anonymous
Not applicable

How to create RankX formula that ignores the empty rows?

Hello everyone,
 
The ranking based on the formula below starts from 2 or 3, because there are empty rows:
 
Rank =
VAR rankOrder = RANKX (FILTER ( ALL ('AllRegions'[Modified],'AllRegions'[Title2],'AllRegions'[Index] ),
'AllRegions'[Title2]
=EARLIER('AllRegions'[Title2])),
'AllRegions'[Modified],,ASC)
RETURN IF([PriceOrigin22]<>BLANK(),rankOrder,BLANK())
 
Do you have any ideas how to amend the formula in order to start from 1 (and still ignoring the empty rows)?
 
Thanks,
Leo
1 ACCEPTED SOLUTION

Hi @Anonymous ,

Please update the formula of your calculated column [Rank] as below and check if it can return the correct result...

Rank =
VAR rankOrder =
    RANKX (
        FILTER (
            ALL ( 'AllRegions'[Modified], 'AllRegions'[Title2], 'AllRegions'[Index] ),
            'AllRegions'[Title2] = EARLIER ( 'AllRegions'[Title2] )
                && 'AllRegions'[PriceOrigin22] <> BLANK ()
        ),
        'AllRegions'[Modified],
        ,
        ASC
    )
RETURN
    rankOrder

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , if this column rank , you do not need all. Try like

 

Rank =
VAR rankOrder = RANKX (FILTER ( ('AllRegions'[Modified],'AllRegions'[Title2],'AllRegions'[Index] ),
'AllRegions'[Title2]
=EARLIER('AllRegions'[Title2]) && [PriceOrigin22]<>BLANK()),
'AllRegions'[Modified],,ASC)
RETURN IF([PriceOrigin22]<>BLANK(),rankOrder,BLANK())

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

Thanks @amitchandak ,

 

I tried it, but I am getting the following error message:

 

4.jpg

 

[Modified] column is consisting of row data. All other columns in this formula are calculated.

 

If I add All to the formula, it works, but the ranking starts at 2:

 

5.jpg

Hi @Anonymous ,

Please update the formula of your calculated column [Rank] as below and check if it can return the correct result...

Rank =
VAR rankOrder =
    RANKX (
        FILTER (
            ALL ( 'AllRegions'[Modified], 'AllRegions'[Title2], 'AllRegions'[Index] ),
            'AllRegions'[Title2] = EARLIER ( 'AllRegions'[Title2] )
                && 'AllRegions'[PriceOrigin22] <> BLANK ()
        ),
        'AllRegions'[Modified],
        ,
        ASC
    )
RETURN
    rankOrder

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.