This VBA/Macro statement will make the second sheet visible if it currently is hidden. Sheets in a workbook can be hidden from the user's view. Some reasons to hide a sheet are: Sheets is a collection object in VBA that contains all the sheets of a workbook. The #2 says to reference the second sheet. Visible is a sheet property that indicates and shows a sheet if True and hides it if set to false. Note that the sheet must be selected to make it the activesheet. You need to make a sheet visible before you select it or VBA will give you an error. |