O
OxanaB
I need to loop through the column and Copy entire rows where CellValue>0
I get only one row.
I will appreciate your help.
Thank you
Sub Macro3()
'
' Macro3 Macro
' Macro recorded 11/16/2004 by default
'
' Keyboard Shortcut: Ctrl+v
Range(ActiveCell, ActiveCell.End(xlDown)).Select
For Each Cell In Selection
If Cell.Value > 0 Then
ActiveCell.EntireRow.Select
Selection.Copy
Rows("8:14").Select
ActiveSheet.Paste
End If
Next Cell
End Sub
I get only one row.
I will appreciate your help.
Thank you
Sub Macro3()
'
' Macro3 Macro
' Macro recorded 11/16/2004 by default
'
' Keyboard Shortcut: Ctrl+v
Range(ActiveCell, ActiveCell.End(xlDown)).Select
For Each Cell In Selection
If Cell.Value > 0 Then
ActiveCell.EntireRow.Select
Selection.Copy
Rows("8:14").Select
ActiveSheet.Paste
End If
Next Cell
End Sub