I'm trying to pull in the contact information of a second HR Business Partner, contingent on the department of the individual, from a separate reference sheet. However, not all departments have a second HRBP— so if the column of "second HRBP contact info" is blank, I don't want anything to be pulled into the new sheet's column. If there is something in the "second HRBP contact info" column, I want that info to be pulled in.
=IF(ISBLANK({Departmental HRBP Contact Range 4}), "", VLOOKUP(Department@row , {Departmental HRBP Contact Range 3}, 4, false))
It keeps on returning an INCORRECT ARGUMENT SET error, but I myself can't think of anything wrong. Thoughts?