Forum Discussion
owenv
4 years agoFrequent Visitor
% based on 2 columns
I have a table of vehicles that have regular inspections. The same vehicle will appear in the table more than once. Sometimes that vehicle will pass an inspection and soemtimes it will fail. I need t...
- 4 years ago
Hi,
Try these measures:
Row count = COUNTROWS(Data)Pass count = CALCULATE([Row count],Data[pass]=TRUE())Pass % = DIVIDE([Pass count],[Row count])Hope this helps.
Ashish_Mathur
4 years agoSuper User
Hi,
Try these measures:
Row count = COUNTROWS(Data)Pass count = CALCULATE([Row count],Data[pass]=TRUE())Pass % = DIVIDE([Pass count],[Row count])
Hope this helps.
owenv
4 years agoFrequent Visitor
Many thanks
- Ashish_Mathur4 years agoSuper User
You are welcome.