Hi,
I am trying to set up time sheet for employees where formula in the column will calculate their income for hours worked.
Employees are using form to enter their hours.
I have set up their individual hourly rates in the summary sheet.
"Amount Earned" Column contains formula. Formula is:
=IF(Name1 = "Worker1",[Work Hours]@row * [Worker1 Hourly Rate]#, IF(Name1 = "Worker2",
[Work Hours]@row * [Worker2 Hourly Rate]#, IF(Name1 = "Worker3", [Work Hours]@row * [Worker3 Hourly Rate]#)))
Because my formula contains @row function, I can't convert it to column formula.
I tried setting up another 2 helper columns with employee names and hour rate, but again i end up using @row function.
Would anyone have an idea how to deal with this?