Is it possible to give name to sheet object and calling it by that
whenever we need. It will be helpful if I need to change content of the
sheet at multiple locations.
Ex: One can change cells(1,2) of sheet1 named "input" by
sheet1.cells(1,2)=21.
Can the same thing be accomplished by typing
s1=worksheets(sheet1) or worksheets("input") or sheet1
s1.cells(1,2)=21
Is there any other way to do it?