larissalle
Technical User
How do I get around the limit that excel has on the number of cells that can be included in the concatenation function? Seems to max out at 15 columns. I need to concatenate 20 columns, one to 10 characters each, mix of strings and numbers.
I tried using VBA to do a concatenation upon activating the worksheet, but didn't work as some columns were strings and some numbers and I got back a type mismatch. I also need a dash between the numbers.
Example:
ColA ColB ColC ColD
Row A 0.25 0.18 0.13 New
Row B 0.18 0.13 Existing
Concatenated fields should result in:
Row A 0.25-0.18-0.13 New
Row B 0.18-0.13 Existing
I tried using VBA to do a concatenation upon activating the worksheet, but didn't work as some columns were strings and some numbers and I got back a type mismatch. I also need a dash between the numbers.
Example:
ColA ColB ColC ColD
Row A 0.25 0.18 0.13 New
Row B 0.18 0.13 Existing
Concatenated fields should result in:
Row A 0.25-0.18-0.13 New
Row B 0.18-0.13 Existing