An inventory manager enters part numbers in one column and sizes in another column. The manager wants to concatenate the columns together into one column of parts.
| 6501 |
| 6501 |
| 6502 |
| 6502 |
| S |
| M |
| M |
| L |
The original text values are in C1 and C2. The concatenated values are in C3.
| C1-T | C2-T | C3-T |
|---|---|---|
| Item number | Size | Item number and size |
| 6501 | S | 6501S |
| 6501 | M | 6501M |
| 6502 | M | 6502M |
| 6502 | L | 6502L |