View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default adding a phone area code that is not there

try
for each c in range("a2:a1400"
c.value="661" & c
next c

--
Don Guillett
SalesAid Software

"Kelly" wrote in message
...
I have a spreadsheet that I exported from our school database. The phone
numbers were not entered with area codes, and I need to add them because
this
spread sheet is being used to update an automated calling system. 98% of
the
phone numbers are the same (661) I thought about just adding 6610000000
to
each number, but I'm thinking that will be as much work as adding to each
field. Help, how can I add an area code to an entire column of 1400
fields
the quickest?