I am trying to write a macro to select a row of cells beginning with the currently selected cell. I want to covert the entire row from the formulas to the resulting values. So far,
ActiveCell.Select
ActiveWindow.SmallScroll Down:=-84
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
This only converts the top cell. the rest are unchanged. Aparrently, the other cells are not being copied.
Thanks for your help. Bill
ActiveCell.Select
ActiveWindow.SmallScroll Down:=-84
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
This only converts the top cell. the rest are unchanged. Aparrently, the other cells are not being copied.
Thanks for your help. Bill