I need to set a value of a cell based on the value of another cell in the same row, however I keep getting "Incorrect Argument Set" or no value at all.
- Column A is a department
- Column B is manager name, based on department chosen.
I want to achieve the following:
If Column A = Department 1 then Column B = Manager 1, else if Column B = Department 2 then Column B = Manager 2, else Column B = Manager 3
I have the following:
=IF([Department]@row = "Dept 1", "Manager 1", IF([Department]@row = "Dept 2", "Manager 2", "Manager 3"))
Both columns are Text/Number.
Column A is a linked column from another sheet with an intake form.