Forum Discussion

Paula_in_AK's avatar
Paula_in_AK
Copper Contributor
Aug 25, 2021
Solved

Combining address columns with CONCAT function

My Excel list has 5 columns for addresses: streetnum, streetname, streetype, unittype, and unitnum.  I need to print 70 labels from it.  I tried to do a CONCAT method but I got #NAME?   I'm using a P...
  • Riny_van_Eekelen's avatar
    Riny_van_Eekelen
    Aug 25, 2021

    Paula_in_AK Are you on Excel 2019 or later? If not, the use of CONCAT will cause a #NAME! error. Use CONCATENATE in stead:

     

    Or, why not try it this way:

     

    =E2&" "&F2&CHAR(10)&G2&" "&H2&" / "&I2

     

    The &-signs connects cells together and allow you to insert separators, like a space, a line-feed (i.e. CHAR(10) or a slash (or whichever you prefer/need).

     

    Make sure that to you set cells with line feeds to "Wrap Text" from the Alignment group on the Home ribbon. Not sure though what impact this will have Mail Merge. Never tried it. Having said that, I don't understand why you can't create an address block in Word/MM that would look something like this:

     

    <<FirstName>> <<LastName>>

    <<StreetNum>> <<StreetName>>

    <<StreetType>> <<UnitType>> / <<UnitNum>>

Resources