I am attempting to use the IF function, but not sure if it makes sense in this scenario: If "Return visit" is identified as 'OT', I want to multiple the "Total qty Labor Hours" by $195. If the "Return visit" cell is NOT identified as 'OT', I want to multiple the "Total qty Labor Hours" by $130.
Here is what I have tried so far, with no luck:
=(IF([Return visit hours]="OT", [Total qty Labor Hours]@row*$195, [Total qty Labor Hours]@row*$130))
=(IF([Return visit hours]="OT", [Total qty Labor Hours]@row*195, [Total qty Labor Hours]@row*130))
=(IF([Return visit hours]=OT, [Total qty Labor Hours]*195, [Total qty Labor Hours]*130))
Any advice would be greatly appreciated!