| Another way I use is the CONCATENATE function.
So in B1 you can use the following formula and then drag the formula down and it will take whatever is in column A and then add "trip" to the end.
=CONCATENATE(A1,"trip")
You can add ".com" or whatever text you want to your original list.
It also works for taking the text from two cells into one =CONCATENATE(A1,B1) ( =(A1&B1) works for that just as well)
Hope that helps someone! |