I have a scenario where a number of hours will be entered in the Hours field, then when a minimum hours choice is made, a formula would add either 2.00, 3.00, or 0.00 and populate the Total Hours field.
I've been fiddling around with this formula, with no luck:
=IF(OR(Minimum_Hours="Hours2",Minimum_Hours="Hours3",Minimum_Hours="Hours0"),
(SUM(Hours_Worked), 2.00),
(SUM(Hours_Worked), 3.00),
(SUM(Hours_Worked), 0.00),
)
Any advice appreciated. Thank you.