K
karim
hi,
i want to create a macro which copy the cell of colume "C"(there is a
formula in column C) when there is any value in cell of colume "A" and paste
only value to Colume "c".
Macro is working in same way but i''m not able to move selection on
worksheet means i'm not able to select any other cell on worksheet.
Please help as i'm new to this.
Macro which i created:-
Public Sub Worksheet_SelectionChange(ByVal Target As Range)
If Cells(Application.ActiveCell.Row, 1) <> "" Then
Cells(Application.ActiveCell.Row, 3).Copy
Cells(Application.ActiveCell.Row, 3).PasteSpecial Paste:=xlPasteValues,
Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End If
End Sub
i want to create a macro which copy the cell of colume "C"(there is a
formula in column C) when there is any value in cell of colume "A" and paste
only value to Colume "c".
Macro is working in same way but i''m not able to move selection on
worksheet means i'm not able to select any other cell on worksheet.
Please help as i'm new to this.
Macro which i created:-
Public Sub Worksheet_SelectionChange(ByVal Target As Range)
If Cells(Application.ActiveCell.Row, 1) <> "" Then
Cells(Application.ActiveCell.Row, 3).Copy
Cells(Application.ActiveCell.Row, 3).PasteSpecial Paste:=xlPasteValues,
Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End If
End Sub