I have a field named SickDaysTaken and one named ExcessSickDays. I want to give 3 days of Sick Days with no penalty and I want the calculation to start
adding to the ExcessSickDays field after the number 3 has been entered into SickDaysTaken.
My thought is an expression for ExcessSickDays field would be
IIF([SickDaysTaken]<=3,"0",IIF([SickDaysTaken]>3,[SickDaysTaken]*1))
Any help appreciated, Thanks