Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Conditional Formatting New Rule with Formulas in Excel
  • How to Use Solver Tool in Excel
  • What-If Analysis: Scenarios and Goal Seek in Excel
  • How to calculate average last N values in a table in Excel
  • Understanding Anova in Excel

References

  • Basic INDEX MATCH approximate in Excel
  • How to get relative row numbers in a range in Excel
  • How to get first column number in range in Excel
  • Count unique text values with criteria
  • Left Lookup in Excel

Data Validations

  • Excel Data validation allow uppercase only
  • Excel Data validation don’t exceed total
  • Excel Data validation whole percentage only
  • Excel Data validation date in next 30 days
  • Prevent invalid data entering in specific cells

How to check worksheet name exists in Excel

by

To test if a worksheet name exists in a workbook, you can use a formula based on the ISREF and INDIRECT functions.

Formula

=ISREF(INDIRECT("sheetname"&"!A1"))

Explanation

In the example shown, the formula in C5 is:

=ISREF(INDIRECT(B5&"!A1"))

How this formula works

The ISREF function returns TRUE for a valid worksheet reference and FALSE is not.

In this case, we want to find out of a particular sheet exists in a workbook, so we construct a full reference by concatenating the sheet names in column B with an exclamation mark and “A1”:

B5&"!A1"

This returns the text:

"Sheet1!A1"

which goes into the INDIRECT function. INDIRECT then tries to evaluate the text as a reference.

When INDIRECT succeeds, the reference is passed into ISREF which returns TRUE. When INDIRECT can’t create a reference, it throws a #REF error, and ISREF returns FALSE.

Dealing with spaces and punctuation in sheet names

If sheet names contain spaces, or punctuation characters, you’ll need to adjust the formula to wrap the sheet name in single quotes like this:

=ISREF(INDIRECT("'"&sheetname&"'!A1"))

Post navigation

Previous Post:

DECIMAL function: Description, Usage, Syntax, Examples and Explanation

Next Post:

AVERAGE function: Description, Usage, Syntax, Examples and Explanation

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • SWITCH function example in Excel
  • OR function Examples in Excel
  • How to use Excel XOR Function
  • NOT function: Description, Usage, Syntax, Examples and Explanation
  • IF with boolean logic in Excel

Date Time

  • Calculate number of hours between two times in Excel
  • List holidays between two dates in Excel
  • EOMONTH function: Description, Usage, Syntax, Examples and Explanation
  • How to get Holiday Date from Year in Excel
  • Check If Two Dates are same month in Excel

Grouping

  • How to randomly assign data to groups in Excel
  • Running count group by n size in Excel
  • Group arbitrary text values in Excel
  • Map text to numbers in Excel
  • Group numbers with VLOOKUP in Excel

General

  • Basic numeric sort formula in Excel
  • How to Delete Cells, Row and Rows in Excel
  • Cell References: Relative, Absolute and Mixed Referencing Examples
  • How to get random value from list or table in Excel
  • List worksheet index numbers in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning