G Guest Jun 16, 2005 #1 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.
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.
B Bob Phillips Jun 16, 2005 #2 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)
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)
G Guest Jun 17, 2005 #3 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) Click to expand...
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) Click to expand...