A
anon
Assuming I have a column with #s, "1,5,7" can i get Excel to create a string
with the text from cells B1, B5, and B7?
with the text from cells B1, B5, and B7?
Biff said:Hi!
You'd be much better off by putting each number in a separate cell:
C1 = 1
D1 = 5
E1 = 7
Then:
=CONCATENATE(INDIRECT("B"&C1),INDIRECT("B"&D1),INDIRECT("B"&E1))
Biff