Forum Discussion
spandy34
2 years agoResponsive Resident
25% Variance between columns
I have a table that records visits and records the planned hours per visit and the actual hours carried out. I want a measure that calculates the number of records where the actual hours is 25%...
- 2 years ago
Thats fabulous its worked - I really appreciate your help as always.
tamerj1
2 years agoCommunity Champion
Hi spandy34
please try
Measur1 =
COUNTROWS (
FILTER ( 'Table', 'Table'[Actual Hours] >= 'Table'[Planned Hours] * 1.25 )
)
Measur1 =
COUNTROWS (
FILTER ( 'Table', 'Table'[Actual Hours] <= 'Table'[Planned Hours] * 0.75 )
)
- spandy342 years agoResponsive Resident
Thats fabulous its worked - I really appreciate your help as always.