Forum Discussion
Paula_in_AK
Aug 25, 2021Copper Contributor
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...
- Aug 25, 2021Paula_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>> 
Paula_in_AK
Aug 25, 2021Copper Contributor
I suppose that this is for 365 and I'm using Office Excel and Word 2016. I have always had trouble using this version to do mail merge. At this point I have managed to combine the 5 fields into one and also managed to get the first label looking right, but for some reason Word refused to load the rest of the labels. I can preview them one at a time but the sheet is blank except for the first one. What am I doing wrong?
Paula_in_AK
Aug 26, 2021Copper Contributor
Yah! I finally did watch your video and it worked. I didn't hit update the rest of the labels. Many thanks.