View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
joeycalisay joeycalisay is offline
external usenet poster
 
Posts: 7
Default removing single quotes from a paste operation

is this inefficient? are there any settings that i can just use?

On Feb 7, 6:22 pm, Gary''s Student
wrote:
Enter and run this small macro:

Sub tickout()
Dim r As Range
For Each r In Selection
r.Value = r.Value
Next
End Sub
--
Gary''s Student
gsnu200704

"joeycalisay" wrote:
i have noticed that when data being pasted to an excel worksheet have
single quotes on all cells, it is being retained by excel. i just
want excel to treat all data as text. anyway to force excel to render
each cells without the single quotes?