Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 996 Bytes

Excel.Worksheet.Tab.md

File metadata and controls

47 lines (31 loc) · 996 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Worksheet.Tab property (Excel)
vbaxl10.chm175149
vbaxl10.chm175149
Excel.Worksheet.Tab
386edcb0-868e-3f24-b4f0-8e52b9fcffcb
05/30/2019
medium

Worksheet.Tab property (Excel)

Returns a Tab object for a worksheet.

Syntax

expression.Tab

expression A variable that represents a Worksheet object.

Example

In this example, Microsoft Excel determines if the worksheet's first tab color index is set to none and notifies the user.

Sub CheckTab() 
 
 ' Determine if color index of 1st tab is set to none. 
 If Worksheets(1).Tab.ColorIndex = xlColorIndexNone Then 
 MsgBox "The color index is set to none for the 1st " & _ 
 "worksheet tab." 
 Else 
 MsgBox "The color index for the tab of the 1st worksheet " & _ 
 "is not set none." 
 End If 
 
End Sub

[!includeSupport and feedback]