icytuvi
New Member
- Joined
- Feb 2, 2020
- Messages
- 31
- Office Version
- 2013
- Platform
- Windows
Hi,
I have two tables including the 'Database' and 'Summary' as below. In the 'Summary table' I would like to list out all available value in 'Database' and I am using &", " to join text from the cells.
Could you please help me an alternative formula so that there won't be the comma if the cell is blank? In my version of excel, CONCAT is not available.
Thanks a lot.
I have two tables including the 'Database' and 'Summary' as below. In the 'Summary table' I would like to list out all available value in 'Database' and I am using &", " to join text from the cells.
Could you please help me an alternative formula so that there won't be the comma if the cell is blank? In my version of excel, CONCAT is not available.
Thanks a lot.
Book1.xlsx | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | I | J | |||
2 | Database | Summary | |||||||||
3 | Product 1 | Product 2 | Product 3 | Product 4 | Product 5 | Product 6 | Product 1 | Alabama, Florida, , , , | |||
4 | Alabama | Hawaii | Iowa | Washington DC. | Product 2 | Hawaii, Colorado, , , , | |||||
5 | Florida | Colorado | Hawaii | Product 3 | Iowa, , , , , | ||||||
6 | Colorado | Product 4 | , , , , , | ||||||||
7 | Iowa | Product 5 | , , , , , | ||||||||
8 | Maryland | Product 6 | Washington DC., Hawaii, Colorado, Iowa, Maryland, Oregon | ||||||||
9 | Oregon | ||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
J3 | J3 | =B4&", "&B5&", "&B6&", "&B7&", "&B8&", "&B9 |
J4 | J4 | =C4&", "&C5&", "&C6&", "&C7&", "&C8&", "&C9 |
J5 | J5 | =D4&", "&D5&", "&D6&", "&D7&", "&D8&", "&D9 |
J6 | J6 | =E4&", "&E5&", "&E6&", "&E7&", "&E8&", "&E9 |
J7 | J7 | =F4&", "&F5&", "&F6&", "&F7&", "&F8&", "&F9 |
J8 | J8 | =G4&", "&G5&", "&G6&", "&G7&", "&G8&", "&G9 |