Need help going down a line in Excel VBA
Solved/Closed
mndude
Posts
2
Registration date
Friday January 15, 2016
Status
Member
Last seen
January 15, 2016
-
Jan 15, 2016 at 06:40 PM
Blocked Profile - Jan 15, 2016 at 07:19 PM
Blocked Profile - Jan 15, 2016 at 07:19 PM
Related:
- Selection.hyperlinks(1).follow newwindow:=false, addhistory:=true
- Number to words in excel formula without vba - Guide
- Vba case like - Guide
- How to open vba in excel mac - Guide
- Gif in excel - Guide
- Marksheet in excel - Guide
1 response
A "FOR" loop will do this.
So set a variable to the number of lines, as in:
So, there ya go. I must tell ya, I am not here to troubleshoot the above code. The above code is meant as an example of what you are attempting to cut and paste together, as in SCRIPT KIDDIE!
I can only hope that you have learned something, and will continue to explore the world of programming. Once again, this code will not run as published (well not on VBSCRIPT)!
Have FUN!
I have said it once, I will say it again. IT!
So set a variable to the number of lines, as in:
dim x, t
dim countx, rowletter
dim theactivesheet
rowletter="E"
x=theactivesheet.numberofrows.count
for t = 1 to x
countx=rowletter+x
Range(countx).Select
Application.Wait Now + TimeValue("00:00:20")
Selection.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True
next
So, there ya go. I must tell ya, I am not here to troubleshoot the above code. The above code is meant as an example of what you are attempting to cut and paste together, as in SCRIPT KIDDIE!
I can only hope that you have learned something, and will continue to explore the world of programming. Once again, this code will not run as published (well not on VBSCRIPT)!
Have FUN!
I have said it once, I will say it again. IT!