Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Solved! Go to 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
@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())
Thanks @amitchandak ,
I tried it, but I am getting the following error message:
[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:
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
71 | |
56 | |
39 | |
35 |
User | Count |
---|---|
66 | |
66 | |
59 | |
53 | |
45 |