Shows and hides the specified worksheet, or the worksheet the formula is in.

XL3SheetVisible( Visible, [SheetName] )

ParameterDescription
VisibleBoolean value. If set to TRUE the worksheet is shown. If set to FALSE the worksheet is hidden.
SheetNameThe name of the worksheet to set the visibility for, or the formula's worksheet if unspecified.

Hides the current worksheet if the value in cell A3 is less than or equal to 10000.

=XL3SheetVisible( A3 > 10000 )

Hides the worksheet named Details if the value in cell A3 is less than or equal to 15000.

=XL3SheetVisible( A3 > 15000, "Details" )