inserting quotation marks

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

Guest

I want to insert quotes in front of text in 1280 cells that already have
values in them. Is there an easy way to do this with a macro.
 
Select those cells

Dim cell

For Each cell In Selection
cell.Value = """" & cell.Value
Next cell


--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Thanks Bob

Kind regards

Dave

Bob Phillips said:
Select those cells

Dim cell

For Each cell In Selection
cell.Value = """" & cell.Value
Next cell


--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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