J
JLGWhiz
Sheets("Draft Order Enrollee Record").Select Range("B1").Select
When you are selecting a new sheet and a range on that sheet, use two lines:
Sheets("Draft Order Enrollee Record").Select
Range("B1").Select
This applies to all of the lines in your code where you are using
Range("B1").Select This will reduce the likelyhood of generating error
messages and will ensure that Range B1 on the correct sheet is selected.
Otherwise, it could simply select B1 on the last active sheet and not send an
error message, so you would not know that an error had occurred.
When you are selecting a new sheet and a range on that sheet, use two lines:
Sheets("Draft Order Enrollee Record").Select
Range("B1").Select
This applies to all of the lines in your code where you are using
Range("B1").Select This will reduce the likelyhood of generating error
messages and will ensure that Range B1 on the correct sheet is selected.
Otherwise, it could simply select B1 on the last active sheet and not send an
error message, so you would not know that an error had occurred.