Skip to main content

How to: Set an Active Worksheet

To set an active worksheet within a workbook, assign the corresponding Worksheet object to the WorksheetCollection.ActiveWorksheet property.

View Example

// Set the second worksheet ("Sheet2") as the active worksheet.
workbook.Worksheets.ActiveWorksheet = workbook.Worksheets["Sheet2"];

The image below shows the worksheet that is set as the active worksheet in a workbook (“Sheet2”).

SpreadsheetControl_Worksheet_Active

The SpreadsheetControl.ActiveSheetChanging and SpreadsheetControl.ActiveSheetChanged events are raised before and after the active worksheet is changed via the control’s Sheet Tab Selector, respectively.

See Also