Thank you.
I the formula above, I would like to ask this : If texts are one word, like Text100 then Wrap is great but if is more then one word like if I replace cell B2 with :
Text 100 115
then Wrap will do this :
Text
100
115
and so one with others, which I do not want
So in formula I would like to put a line break in such a way that description of one number to stay in same line
Then, the formula will grow longer:
=SUBSTITUTE(SUBSTITUTE(TRIM(IF(D2="","",IFERROR(SUBSTITUTE(VLOOKUP(D2,Table1,2,)," ","_"),"ERROR"))&IF(E2="",""," "&IFERROR(SUBSTITUTE(VLOOKUP(E2,Table1,2,)," ","_"),"ERROR"))&IF(F2="",""," "&IFERROR(SUBSTITUTE(VLOOKUP(F2,Table1,2,)," ","_"),"ERROR"))&IF(G2="",""," "&IFERROR(SUBSTITUTE(VLOOKUP(G2,Table1,2,)," ","_"),"ERROR"))&IF(H2="",""," "&IFERROR(SUBSTITUTE(VLOOKUP(H2,Table1,2,)," ","_"),"ERROR"))&IF(I2="",""," "&IFERROR(SUBSTITUTE(VLOOKUP(I2,Table1,2,)," ","_"),"ERROR"))&IF(J2="",""," "&IFERROR(SUBSTITUTE(VLOOKUP(J2,Table1,2,)," ","_"),"ERROR")))," ",CHAR(10)),"_"," ")
Regards
Bosco