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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
dombarg
Helper II
Helper II

how to override Expersion Default of RANKX

hello.

as u know,The Default behavior of RANKX expersion in dealing with blank rows is to count them as zero.

how can i override this behavior in a way it counts it as blank ( or      ignore it). the problem arises in folloing picture,

please have a look rank.JPG

i've wrote this DAX:

rank max = 

RANKX (
    ALLSELECTED('1-Grouping'[کد شرکت])
    ,
    [Selected Measure],
    ,
    0,
    Dense
)

 

 

3 REPLIES 3
Anonymous
Not applicable

@dombarg,

Please check if one of the following DAX returns your expected result.

rank max = 

IF( NOT ( ISBLANK ( [Selected Measure]) ) ,

RANKX (
    ALLSELECTED('1-Grouping'[کد شرکت])
    ,
    [Selected Measure],
    ,
    0,
    Dense
),

BLANK())
rank max = 

IF(  [Selected Measure]<>0 ,

RANKX (
    ALLSELECTED('1-Grouping'[کد شرکت])
    ,
    [Selected Measure],
    ,
    0,
    Dense
),

BLANK())



Regards,
Lydia

Anonymous
Not applicable

@dombarg,

I am not very clear about your requirement. Could you please share sample data of your original table and post expected result here? Also we need to know the DAX of selected Measure.

Regards,
Lydia

assume selected measures as SUM.

Look at the highlighted numbers and their relevant RANK.

The BI deal with zero as value and attribute a rank to them.how can i tell to "BI that ignore zero please!"

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.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors