Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of niton

niton

niton has asked 0 questions and find answers to 14 problems.

Stats

350
EtPoint
112
Vote count
0
questions
14
answers

About

Add Option Explicit to the top of your VBA code. Remove unused variables and declare the rest. https://excelmacromastery.com/vba-error-handling / "On Error Resume Next , is the most commonly used and misused form. It instructs to VBA to essentially ignore the error and resume execution on the next line of code. It is very important to remember that On Error Resume Next does not in any way "fix" the error." http://www.cpearson.com/excel/errorhandling.htm