PIsabel
Board Regular
- Joined
- Feb 4, 2014
- Messages
- 126
- Office Version
- 365
- Platform
- Windows
Hello
I have this code that works very well.
It runs in column E to the last occupied cell of Column J.
Now I need a new code that does the same but runs only on cells in column E if they have information and if column J on the same line has no information
Thanks
Isabel
I have this code that works very well.
It runs in column E to the last occupied cell of Column J.
Now I need a new code that does the same but runs only on cells in column E if they have information and if column J on the same line has no information
Thanks
Isabel
Code:
Sub no_more_ND()
Dim c As Range
For Each c In Range("E1:E" & Range("J" & Rows.Count).End(xlUp).Row)
c.Select
Application.SendKeys "{F2}"
Application.SendKeys "{ENTER}"
DoEvents
Next c
End Sub
Last edited: