K Krinsom New Member Feb 12, 2010 #1 Hallo, I have a text (a normal text) in which I´d like to insert a value, insert a number in between this text, a number which is in another cell . This number changes every month. How do I do that? Cheers Krinsom
Hallo, I have a text (a normal text) in which I´d like to insert a value, insert a number in between this text, a number which is in another cell . This number changes every month. How do I do that? Cheers Krinsom
T TessaES New Member Feb 12, 2010 #2 If the number is in A1 put: ="some text " & A1 & " and some more." in another cell
Hui Excel Ninja Staff member Feb 12, 2010 #3 Krinsom You can add formatting to the number by ="some text " & Text(A1,"##0.00") & " and some more." will return "some text 17.00 and some more." asuming 17 was in A1 There are lots of Text formats you can use Have a read of http://chandoo.org/wp/2008/02/25/custom-cell-formatting-in-excel-few-tips-tricks/
Krinsom You can add formatting to the number by ="some text " & Text(A1,"##0.00") & " and some more." will return "some text 17.00 and some more." asuming 17 was in A1 There are lots of Text formats you can use Have a read of http://chandoo.org/wp/2008/02/25/custom-cell-formatting-in-excel-few-tips-tricks/