Can anyone remind me why this doesn't work.

sheets("sheet1").range("A1").select
It will work if I separate them.

sheets("sheet1").select
range("A1").select
and sometimes it works if I do this

sheets("sheet1").range("A1").activate
But I forget why the first version doesn't work.