cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Dolfvc
Frequent Visitor

RANKX function is not working

I have a simple table from Google Analytics that look at website pageviews for a online news site.

The table (Views) consist of the following columns:
"Category" "screenPageViews" "pageTitle" "date" and "FullURL"

 

I have this function that works perfectly:

RankCat =
VAR ViewRank = RANKX(ALL(Views[Category]), CALCULATE(SUM(Views[screenPageViews])),,DESC)
RETURN
ViewRank

However this function is not working correctly:
RankArt =
VAR ViewRank = RANKX(ALL(Views[pageTitle]), CALCULATE(SUM(Views[screenPageViews])),,DESC)
RETURN
ViewRank
Dolfvc_2-1694505116697.png

 


 

Dolfvc_1-1694505065136.png

 

1 REPLY 1
isjoycewang
Resolver IV
Resolver IV

Hi @Dolfvc,

 

I create some dummy data for demo: Exercise File

Please consider that there is also 'Category' column in your second table.

RankArt = 
IF( HASONEVALUE(Views[Category]),
RANKX( ALL(Views[pageTitle],Views[Category]),  CALCULATE(SUM(Views[screenPageViews])),,DESC), "")

isjoycewang_0-1694512562676.png

 

 

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors