Forum Discussion
ArchStanton
2 years agoPower Participant
Text added to measure error
Hi, I have the following measure that almost works but I'm seeing 12 decimal places in the result. Avg Case Length =
CALCULATE (
AVERAGEX ( 'Cases', 'Cases'[Case Length (Validation Da...
- 2 years ago
Try this?
Avg Case Length = FORMAT(CALCULATE ( AVERAGEX ( 'Cases', 'Cases'[Case Length (Validation Date)] ), 'Cases'[User Team Name] = "ERT" ),"0.0") & " Days"
brokencornets
2 years agoHelper IV
Try this?
Avg Case Length =
FORMAT(CALCULATE (
AVERAGEX ( 'Cases', 'Cases'[Case Length (Validation Date)] ),
'Cases'[User Team Name] = "ERT"
),"0.0") & " Days"ArchStanton
2 years agoPower Participant
Thank you!