Appen " ' " to all cells
Great ... Save the xls as .csv ... the import works fine! phew ...
Thanks for the help guys
"WhoC@nItbN0W" wrote:
Hi:
1. Apologise for the typo.
2. Ok, while this seems to work in terms of "append to the beginning" (or
end), Outlook doesnt still seem to like it. So I did some research.
3. I created a "Contact" and exported it into excel. Now while the " ' "
shows up before the data in the cell, actually it is not visible! "Name
Ranges" I think they call it.
4. So I am back to square one.
"Ian" wrote:
I assume you need to append ' to the beginning of the data. If you need it
at the end, reverse the order of the 2 components after the = sign (around
the & symbol).
Change the r & c ranges to suit your rows & columns.
Sub appendcharacter()
For c = 1 To 10
For r = 1 To 10
Cells(r, c).Value = "'" & Cells(r, c).Value
Next r
Next c
End Sub
--
Ian
--
"WhoC@nItbN0W" wrote in message
...
I need to import my 'excel based' contact list into Outlook2003. However,
to
do this the character ' needs to be appended to all cells if Outlook has
to
read the data.
Any idea on how to do this?
Regards
|