Forum Discussion

tomhoffman's avatar
tomhoffman
Copper Contributor
Jul 06, 2020
Solved

Calculated Column to Return Email Address

Hello All, I have a SharePoint Document library that has a column called "Manager Responsible" that is a 'Choice' dropdown. I'm trying to create a flow that triggers when a file is created and looks ...
  • racrig's avatar
    Jul 06, 2020

    tomhoffman Can you just make the 'Manager Responsible' a Person column so that the user has to choose from a full list of actual user accounts? Then you can send emails to them, no problem. I know sometimes users complain having to choose from the entire Active Directory listing (although I really don't understand why).

    But failing that, I would try syntax like this:
    =IF([Manager Responsible]="John Smith", "mailto:john.smith@email.com")

     

    I think you can just put a comma at the end and keep adding new IF statements. You'll just have to make sure you get the number of closing parentheses right at the end. If there are only a small handful of manager names, I guess this would work. But this method is limited and means you'll have to maintain it whenever managers change. Choosing from a Person column would be better!