I want to select sheets in an excel document. They are all named, but I know that you can select a sheet using its intrinsic number (ie. even though the second sheet created is named "risk ranking", I can still select it via Sheet2.select). Is there anyway to set this up using a counter variable? Here is a simplified and isolated code line from the macro:
counter = 0
Sheet & counter & .Select
counter = counter + 1
Anyone have any ideas?