bobunknown
Registered User.
- Local time
- Today, 08:09
- Joined
- May 25, 2018
- Messages
- 77
Hi all,
I'm new to VBA and trying to use it to make my job a bit easier while learning something new.
The problem I am working at the moment is trying to get certain rows of my Excel sheet copied in to a different sheet automatically if a value in a certain range is the correct date.
Here is what I managed to think up so far... be gentle and use small words
Sub Movedata_March()
If Range("M2:M244") = "31.03.2019" Then
Row.Select
Selection.Copy
Sheets("March").Select
ActiveSheet.Paste
End If
End Sub
I'm new to VBA and trying to use it to make my job a bit easier while learning something new.
The problem I am working at the moment is trying to get certain rows of my Excel sheet copied in to a different sheet automatically if a value in a certain range is the correct date.
Here is what I managed to think up so far... be gentle and use small words

Sub Movedata_March()
If Range("M2:M244") = "31.03.2019" Then
Row.Select
Selection.Copy
Sheets("March").Select
ActiveSheet.Paste
End If
End Sub