Forum Discussion
Represent Late Task Counts
- Anonymous2 years ago
Thank you Kishore_KVN
Hi, AllisonGis
Based on the sample data you provide:
Start by creating a measure that calculates the total number of tasks:
Alltaks = COUNTROWS('Table')Second, create a metric that counts the tasks with status=Late:
LateTask = COUNTROWS(FILTER('Table','Table'[Status]="Late"))Use these two measures in the Gauge visual:
I have provided the PBIX used this time below for your reference.
Best Regards
Jianpeng Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you Kishore_KVN
Hi, AllisonGis
Based on the sample data you provide:
Start by creating a measure that calculates the total number of tasks:
Alltaks = COUNTROWS('Table')
Second, create a metric that counts the tasks with status=Late:
LateTask = COUNTROWS(FILTER('Table','Table'[Status]="Late"))
Use these two measures in the Gauge visual:
I have provided the PBIX used this time below for your reference.
Best Regards
Jianpeng Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- AllisonGis2 years agoRegular Visitor
Hi Anonymous,
Thank you so much for your help this is exactly what I was looking for!