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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

How to get ranks based on power BI report views

Hi,

Im trying to get ranks based on the views count on reports in workspaces.I tried so many ways and can someone help me to get the ranks based on the view count.I got views,

viewS = IF(Usage[Activity]="ViewReport"|| Usage[Activity]="ViewDashboard",1,0)
View count= 
CALCULATE(COUNT(Usage[viewS]))
I want to get ranks based on the view count. Can someone correct me if my view count KPI is wrong? and also help me to get the ranks.
Thanks

 

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @Anonymous ,

First, please update the formula of your measure [View count] as below:

View count= CALCULATE(SUM(Usage[viewS]))

Then create a measure as below:

Rank = IF([View count]=0,BLANK(),RANKX(ALLSELECTED('Usage'[Activity]),[View count],,DESC,Dense))​

How to get ranks based on power BI report views.JPG

If the above one is not what you want, please provide some sample and your expected result with sample or screenshot. Thank you.

Best Regards

 

 

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yiruan-msft
Community Support
Community Support

Hi @Anonymous ,

First, please update the formula of your measure [View count] as below:

View count= CALCULATE(SUM(Usage[viewS]))

Then create a measure as below:

Rank = IF([View count]=0,BLANK(),RANKX(ALLSELECTED('Usage'[Activity]),[View count],,DESC,Dense))​

How to get ranks based on power BI report views.JPG

If the above one is not what you want, please provide some sample and your expected result with sample or screenshot. Thank you.

Best Regards

 

 

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

@Anonymous , First you have return blank, as 0 will also count 1

 

viewS = IF(Usage[Activity]="ViewReport"|| Usage[Activity]="ViewDashboard",1,blank)

 

This should count correct  now

View count=
CALCULATE(COUNT(Usage[viewS]))

 

for rank

rankx(Allselected(Usage), [View count])

 

or refer

For Rank Refer to these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
My Video : https://www.youtube.com/watch?v=DZb_6j6WuZ0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.