I would like to run a macro to check the contents of a cell when a user chages its colour. The colour change does not trigger the worksheet change event. Can anyone help?
I currently have a large amount of data (10000 rows x 10 columns) of string data held in an array during the execution of a macro. I would like to write this to an empty sheet. I am currently using a for and next loop like:
For 1 = 1 to 10000
worksheets(1).cells(i,1) = Myarray(i,1)...
Why does -
Return = WshShell.Run("notepad", 1, true)
return a '0' and wait for notepad to close before executing the next line of script, but -
Return = WshShell.Run("explorer", 1, true)
return a 1 and continues the rest of the script without waiting for explorer to end? Explorer is not the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.