I have a table of numbers:
1
2
3
4
5
6
7
.
.
.
What i would like to get:
*1*
*2*
*3*
*4*
*5*
*6*
*7*
.
.
.
I have written a formula, but i dont know how to apply this function to the existing table. I keep getting some kind of reference error. (REF!)
My formula:
= "*" & A2:A(whatever number is last) & "*"
Assuming this is a one time thing...
="*"&B1&"*"
where b1 is the 1st cell containing the number to add * to.