Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I am struggling to remove a rank number from the total on a table. I have done this previously on other tables using HASONEVALUE but I dont know how, if possible to incorporate this in this measure.
Rank (Var to Prior Year) =
IF(
NOT( ISBLANK ([Var. to Prior Year EUR])),
RANKX(
FILTER(ALLSELECTED('PL Data'[Branch]), NOT( ISBLANK( [Var. to Prior Year EUR]))),
[Var. to Prior Year EUR]
)
)
Many thanks for any assistance,
Solved! Go to Solution.
Hi @Gazsim44
Try this,
Rank (Var to Prior Year) =
IF (
HASONEVALUE ( 'PL Data'[Branch] ),
RANKX (
FILTER (
ALLSELECTED ( 'PL Data'[Branch] ),
NOT ( ISBLANK ( [Var. to Prior Year EUR] ) )
),
[Var. to Prior Year EUR]
)
)
Hi @Gazsim44
Try this,
Rank (Var to Prior Year) =
IF (
HASONEVALUE ( 'PL Data'[Branch] ),
RANKX (
FILTER (
ALLSELECTED ( 'PL Data'[Branch] ),
NOT ( ISBLANK ( [Var. to Prior Year EUR] ) )
),
[Var. to Prior Year EUR]
)
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 72 | |
| 46 | |
| 35 |