Forum Discussion
user900
2 years agoHelper II
Create Summy Table
I have a large data set with Date and Status. Status includes Assigned, In Progress and Complete. I want to create a dynamic summary of the count of Complete and Total by Month. The total will be t...
- 2 years ago
user900 , for the First three columns use Group by of Power Query, and for % create a measure in DAX
Divide(Sum(Table[Complete]), Sum(Table[Total]) )
Anonymous
2 years agoNot applicable
Hi user900
Thanks for the solution amitchandak provided and I want to offer some more information for you to refer to.
Sample data
Create the following measures
Complete =
VAR a =
CALCULATE ( COUNTROWS ( 'Table' ), 'Table'[Status] = "Complete" )
RETURN
IF ( a > 0, a, IF ( [Total] > 0, 0 ) )
Total = COUNTA('Table'[Status])% = DIVIDE([Complete],[Total])
Then put the measures to a table visual.
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.