Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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]
)
)
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 45 | |
| 34 | |
| 27 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 56 | |
| 38 | |
| 21 | |
| 21 |