option explicit before beinning a sub tells the vba compiler to verify that all variables are declared and maintained correctly as how they are dim (ensioned)
is useful for 'proper' programming and makes it easier to catch variable mispellings
highlight explicit in vba ide and press f1
implicit is the opposite of explicit, if option explicit is not used then implicit is implied