VBA interprets "Me" differently depending on where the code is placed - the module determines how VBA decidesCan you explain the Me in "Me.Range("A1:M31")"? Thank you
Above, the code is in sheet module of sheet "Finder". So:
Me = Sheets("Finder")
Or another example - with UserForm with name "uf_Expenses"
If the code is in the UserForm module:
Me = UserForm named "uf_Expenses"
Etc
Bookmarks