Forum Discussion

Helen15's avatar
Helen15
Copper Contributor
Nov 20, 2020

calculation creating unique email address

Can anyone help me with a formula please. I have about 8 columns of email address for an individual (some are blank  and some are the same email) and want to create a formula in the last column to create a unique list of those email address and leave the blank ones out for that individual. I have about 5,000 rows and so need a formulae to do this. Can anyone help please. Many thanks

  • Bennadeau's avatar
    Bennadeau
    Iron Contributor

    HiHelen15 

    You can use =Textjoin

    =TEXTJOIN("; ",1,B2:I2)

     the first part "; " is simply a delimiter.

    the 1 is set to ignore blank cells

    while B2:I2 is the range where your email address are found.

     

    • Bennadeau's avatar
      Bennadeau
      Iron Contributor

      Helen15 

      Forgot to select only the unique email address.

      Try this instead:

      =TEXTJOIN("; ",1,UNIQUE(B2:I2,1,0))
      • Helen15's avatar
        Helen15
        Copper Contributor
        The first one works a treat but for some reason when I put unique in the formula it doesn't work for me, saying #name? . Any ideas?
        Thank you every so much in replying ☺️

Resources