What is the difference between the VBA code wb.Sheets(1).Cells.Select and wb.Sheets(1).Activate?
wb.Sheets(1).Cells.Select
wb.Sheets(1).Activate
Select - "Selects" Cell(s)
Select
Activate - "Activates" a sheet (kind of like saying to focus on a sheet)
Activate
Sometimes u need to specifically ACTIVATE the sheet, in order to make a SELECT
ACTIVATE
SELECT