View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_3_] Dave Peterson[_3_] is offline
external usenet poster
 
Posts: 2,824
Default Paste Special Macro

If I put '000001 in a cell (so it's text), then use .value = .value, it's
converted to real numbers.

If I have a value in a cell that uses character by character formatting, then I
lose that.

But I don't see a difference if you know your data.


Bernie Deitrick wrote:

Myrna,

Why not just?

Sub ConvertToValues()
Selection.Value = Selection.Value
End Sub

Bernie

"Myrna Larson" wrote in message
...
I use the following macro, and I've attached a shortcut key to it,
CTRL+SHIFT+V. It requires only that you select the cells to be converted

(must
be a single-area selection); it does *both* the copying and the pasting.

Sub ConvertToValues()
With Application
.ScreenUpdating = False
.DisplayAlerts = False
End With
With Selection
.Copy
.PasteSpecial Paste:=xlValues
End With
With Application
.CutCopyMode = False
.DisplayAlerts = True
End With
End Sub 'ConvertToValues


On Wed, 11 Aug 2004 08:32:13 -0700, "Aaron"
wrote:

Hi,

I was hoping that someone could tell me how to create a
macro that I can link to a customized button on my
toolbar that simply does a "edit" "paste
special" "values". I have to use this function quite a
bit throughout my day and just wanted a shortcut. Thanks
for your help.

Aaron



--

Dave Peterson