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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
Kosenurm
Regular Visitor

Create a leaderboard based on Dataverse column value

Hi there

 

I have a pretty basic PowerBI report, which includes completion rates of a certain task within a PowerApp, which is patched to a Dataverse table. 

 

The columns I am wanting to use here are all the colleagues where action is required by their manager, the action completion status (either 'Completed' or 'Incomplete') and then another column which gives the colleague&leader's Department. 

 

I would like to create a leaderboard to show, in desending order, who has completed the most tasks (so where the Count of colleagues per department has an action completion status column value of 'Completed'), to try and gamify what is a pretty boring job for our business. 

 

As a mock up in Excel of what I am trying to achieve in PBI is like this...

 

powerbi snip.PNG

 

All help appreciated

 

Thanks

K.

1 ACCEPTED SOLUTION

Hi, @Kosenurm 

Try formula as below:

Percent complete =
VAR _completed =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        FILTER (
            ALLEXCEPT ( 'Table', 'Table'[Department] ),
            'Table'[Status] = "Completed"
        )
    )
VAR _total =
    CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[Department] ) )
RETURN
    _completed / _total

Then apply this filed to a table visual and sort by this field

veasonfmsft_0-1656408107666.png

Best Regards,
Community Support Team _ Eason
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

3 REPLIES 3
amitchandak
Super User
Super User

@Kosenurm , Not very clear on the ask?

 

If you need a measure it would be like

 

divide( Countrows(Filter(Table, Table[Status]= "Completed")), Countrows(Table))

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Apologies.

 

A table which shows completion with highest completion percentage first.

 

Thanks

K

Hi, @Kosenurm 

Try formula as below:

Percent complete =
VAR _completed =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        FILTER (
            ALLEXCEPT ( 'Table', 'Table'[Department] ),
            'Table'[Status] = "Completed"
        )
    )
VAR _total =
    CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[Department] ) )
RETURN
    _completed / _total

Then apply this filed to a table visual and sort by this field

veasonfmsft_0-1656408107666.png

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

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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