Forum Discussion
Create a leaderboard based on Dataverse column value
- 4 years ago
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 / _totalThen apply this filed to a table visual and sort by this field
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.
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))
Apologies.
A table which shows completion with highest completion percentage first.
Thanks
K
- v-easonf-msft4 years agoCommunity Support
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 / _totalThen apply this filed to a table visual and sort by this field
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.