can anyone please assist
I wishing to create a command button on an excel worksheet and assign some VB code to the "*******" function.
what Im want to happen is to only copy those rows where the value in colum P = FALSE
My current VB Code looks like this
Sub Macro1()
Cells.Select
Selection.Copy
Sheets("check").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
I wishing to create a command button on an excel worksheet and assign some VB code to the "*******" function.
what Im want to happen is to only copy those rows where the value in colum P = FALSE
My current VB Code looks like this
Sub Macro1()
Cells.Select
Selection.Copy
Sheets("check").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub