Things I wished I know when I Started programming VBA
1. Use auto complete word: Control + Space This invokes intellisense A further press of the Tab key will select the highlighted word If the Spacebar key instead of the Tab key is pressed it will add a space after selecting the highlighted word. 2. View the definition: Shift + F2 and back to View the last position: Control + Shift + F2 2.1 If we have the following code in our module: Sub Calc() Dim result as Long Result = PerformCalc(5, 10) MsgBox “Result is “ & result End...