I suggest that you always use Option Explicit. Without it it may take some time to figure out why, for example, the following MsgBox displays a blank rather than "100".

Code:
    For x = 1 To 100
        NotObvious = NotObvious + 1
    Next
    
    MsgBox Not0bvious