Forum Discussion
rm82
8 years agoNew Member
Limit Formula to Maximum Value
Hello everyone, I am having an issue with a calculated field. We have a row that may sum up several numbers. I entered Internal time today for the following amounts: 2 9 5 5 I hav...
v-jiascu-msft
8 years agoMicrosoft Employee
Hi rm82,
Seems you need to remove the filter of that column. Try something like below. If it doesn't work, please provide a more complete sample.
Internal =
CALCULATE (
MIN ( 6, SUM ( Time_Entry[Hours_Actual] ) ),
v_rpt_Time[WORK_TYPE] = "Internal",
ALL ( Time_Entry )
)
Best Regards,
Dale