Mehmud Khan
Member
Dear friends,
Good day!
I have data from cell A1:A100 [list may be extend], and I have below codes which run in column C.
As of now if I keep cursor in C1 then run macros then VBA will auto run and provide data in cell C1.
I need your help to run the data in entire range, when C1 data is update then VBA move to C2 and update C2 then C3, C4 so on...
I hope, I am able to explain my query.
Lots of hopes from this team.
Thanks in advance.
Regards,
Good day!
I have data from cell A1:A100 [list may be extend], and I have below codes which run in column C.
As of now if I keep cursor in C1 then run macros then VBA will auto run and provide data in cell C1.
I need your help to run the data in entire range, when C1 data is update then VBA move to C2 and update C2 then C3, C4 so on...
Code:
Sub ZarotaCheck()
ActiveCell.Clear
ActiveCell.Offset(0, -2).Copy
AppActivate ("Zarota"), 10
SendKeys ("+{F2}"), 10
SendKeys ("^v"), 10
SendKeys ("{ENTER}"), 10
SendKeys ("+{F2}"), 10
Application.Wait (Now + TimeValue("00:00:01"))
ActiveCell.Offset(0, -1).Copy
SendKeys ("^v"), 10
SendKeys ("{ENTER}"), 10
SendKeys ("^a"), 10
SendKeys ("^c"), 10
Application.Wait (Now + TimeValue("00:00:01"))
ClipboardToCell ActiveCell
End Sub
I hope, I am able to explain my query.
Lots of hopes from this team.
Thanks in advance.
Regards,