Related:
- Macro to delete rows containing a date
- How to delete a row in a table in word - Guide
- How to delete whatsapp account without login - Guide
- How to delete whatsapp account without phone - Guide
- How to delete badoo account - Guide
- How to delete skype account - Guide
2 responses
Dear Sir,
Please use the following and insert the specific date in the place of DATE:
EndCount = Range("DateCount").Value '# of rows
application.Goto Reference:="DateStart"
For LoopCount = 1 To EndCount Step 1
If ActiveCell.Value = "DATE" Then
Selection.EntireRow.Hidden = True
End If
ActiveCell.Offset(1, 0).Activate
Next LoopCount
Thanks.
Please use the following and insert the specific date in the place of DATE:
EndCount = Range("DateCount").Value '# of rows
application.Goto Reference:="DateStart"
For LoopCount = 1 To EndCount Step 1
If ActiveCell.Value = "DATE" Then
Selection.EntireRow.Hidden = True
End If
ActiveCell.Offset(1, 0).Activate
Next LoopCount
Thanks.