I'm hoping someone can help me determine the error in my IF statement. We have tasks in our projects assigned to a specific role: either an SL (Senior Lead), SPL (Senior Project Lead), or a PC (Project Coordinator). I have those initials and the person assigned to those roles at the top of my sheet. I.e.: PL Steve Smith, SPL Lee Jones, PC Aru Ward. The person's name is in the "Action" column in row 1 (PL), 2 (SPL), or 3 (PC). I am trying to create an IF statement that will look at the initials in the "Responsible" column and then fill in that name from the top of the sheet (in the "Action" column) in the "Assigned To" column.
I can get the IF statement to work when I have the person's name fill into the "Assigned To" column, based on one of the role initials. When I try to expand the formula to look for one of the three initial options for the three roles I get a "#UNPARSEABLE" message.
Here is the single IF statement that worked: =IF(Responsible@row = "PL", $Action$1). And here is the multiple IF statement I tried to create for the second initial options "SPL" that did not work: =IF[(Responsible@row = "PL", $Action$1), IF(Responsible@row = "SPL", $Action$2)] . If I can figure out how to get it to work for two options, "PL" or "SPL", then I can add to the formula for the third option "PC". Thank you!