Skip to main content

I am struggling here! I thought I was getting better - but I need help. Thank you in advance!

My column is "Sourcing Manager" and I am trying to create another column with a formula to add their email automatically.

If the Sourcing Manager is "Monique", then it should list Monique@theroomblocksource.com

If the Sourcing Manager is "Karen", then it should list karen@theroomblocksource.com

If the Sourcing Manager any other name, then it should list hello@theroomblocksource.com

This is the formula I am trying:

IF({Sourcing Manager}=Monque, monique@theroomblocksource.com, IF({Sourcing Manager} = Karen, karen@theroomblocksource.com, hello@theroomblocksource.com))

 

The missing "String" is the problem.

IF(
{Sourcing Manager}="Monque",
"monique@theroomblocksource.com",
IF({Sourcing Manager} = "Karen",
"karen@theroomblocksource.com",
"hello@theroomblocksource.com"
)
)

SWITCH function is much easier

SWITCH({Sourcing Manager},
"Monque", "monique@theroomblocksource.com",
"Karen", "karen@theroomblocksource.com",
"hello@theroomblocksource.com"
)

 


Perfect, thank you @Sho !! That worked!


Reply