Forum Discussion
CalexUK
3 years agoFrequent Visitor
Counting Text Values Across Multiple Dynamic Columns by User
Hi I have a Matrix Table as below, I want to count the total number of learning activitys then work out the completion percentage, for example here there are 7 learning outcomes in total and line 1 ...
- 3 years ago
Hi CalexUK
Should it be something like this?Result = VAR CurrentStatus = VALUES ( 'Table'[Status] ) VAR PercentCompleted = DIVIDE ( COUNTROWS ( FILTER ( 'Table', 'Table'[Status] = "Completed" ) ), COUNTROWS ( 'Table' ) ) RETURN IF ( HASONEVALUE ( 'Table'[UserID] ) && HASONEVALUE ( 'Table'[Programmes] ), CurrentStatus, PercentCompleted + 0 ) - 3 years ago
CalexUK
Perhaps somthing like "< Parameter" makes sense?
CalexUK
3 years agoFrequent Visitor
Hi Tamerj!
This solution worked great, is there a way to add a filter to this measure so that I can filter out whos is at say 100% for all items ? or 50% etc ?
Thanks In Advance
Paul