G
Guest
I have a row of formulas that yield a percentage. These formulas reference
% values on another work sheet
I have the following Macro that copies these values to another row that is
formatted %
Private Sub CommandButton5_Click() 'Copies Calculated MI% to Actual MI%
Range("AB41:AF41").Select
Selection.Copy
Range("AB40").Select
Selection.PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
Range("AB40").Select
End Sub
The copy results in numbers formatted as text
What am I doing wrong?
oldjay
% values on another work sheet
I have the following Macro that copies these values to another row that is
formatted %
Private Sub CommandButton5_Click() 'Copies Calculated MI% to Actual MI%
Range("AB41:AF41").Select
Selection.Copy
Range("AB40").Select
Selection.PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
Range("AB40").Select
End Sub
The copy results in numbers formatted as text
What am I doing wrong?
oldjay