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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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