Add data to cell w/o loosing initial data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to know if there is a way to add data to data without retyping.
For example I have a colum of 18015555555 and I want to add [rfax:(cell
#)@/fn=(phone number)] So I would like to add the brackets - copy from a
cell - @/fn= and not loose the data already in the spread sheet. Example 2.
Add [rfax:company name@fn/=(saved data here) then close bracket.

So I want to add data to cells without loosing the data already in the
cells. I have about 600 of them to do and I really don't want to do each one
by hand.

Please let me know if anyone knows how to accomplish this.

Thanks
 
Assuming the phone number is in B2, the word "Company" in A2, you can create
the text you want with this formula ="[rfax:"&A2&" name@fn/="&B2

Copy this down as far as needed. To convert the formulas to their values,
Edit/Copy the formulas, then Edit/Paste Special over the formulas or in a new
column, selecting the VAlues option.
 
You could try

="[rfax:company name@fn/=("&A1&")"

or


="[rfax:company name@fn/="&TEXT(A1,"(00000000000)")


the latter will give you a better way of formatting it as a phone number for
instance

="[rfax:company name@fn/="&TEXT(A1,"([<=9999999]###-####;(###) ###-####)")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top