Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

This article describes the formula syntax and usage of the TYPE function in Microsoft Excel.

Description

Returns the type of value. Use TYPE when the behavior of another function depends on the type of value in a particular cell.

Syntax

TYPE(value)

The TYPE function syntax has the following arguments:

  • Value    Required. Can be any Microsoft Excel value, such as a number, text, logical value, and so on.

If value is

TYPE returns

Number

1

Text

2

Logical value

4

Error value

16

Array

64

Compound data

128

Remarks

  • TYPE is most useful when you are using functions that can accept different types of data, such as ARGUMENT and INPUT. Use TYPE to find out what type of data is returned by a function or formula.

  • You cannot use TYPE to determine whether a cell contains a formula. TYPE only determines the type of the resulting, or displayed, value. If value is a cell reference to a cell that contains a formula, TYPE returns the type of the formula's resulting value.

Example

Copy the example data in the following table, and paste it in cell A1 of a new Excel worksheet. For formulas to show results, select them, press F2, and then press Enter. If you need to, you can adjust the column widths to see all the data.

Data

Smith

Formula

Description

Result

=TYPE(A2)

Returns the type of the value in A2. The Text type is indicated by 2.

2

=TYPE("Mr. "&A2)

Returns the type of "Mr. Smith, which is Text.

2

=TYPE(2+A2)

Returns the type of the formula in C6, which returns 16, the type for the error message #VALUE! The error message #VALUE! is shown in C7.

16

=(2+A2)

The error value returned by the formula =(2+A2), which is used in C2.

#VALUE!

=TYPE({1,2;3,4})

Returns the type of an array constant, which is 64.

64

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×