Site icon Kaizen.Personal computer work.

Decision functions. Other than error.(Microsoft Excel)

Japanese version.

Here are the specifications of the functions that determine the state of a cell and examples of the results.

Note that error-determining functions are not included.

How it works

All functions, specifications as follows.

=IS******(value)
ArgumentOmissionExplanation
valueRequired argument.
Cells to be determined.
Function Name.Conditions that are TRUE.
ISBLANKBlank cell.
ISFORMULAIncludes formulas.
ISREFValid as a cell reference.
ISTEXTString.
ISNONTEXTNon-string (including blank cell).
ISLOGICALBoolean.
ISNUMBERNumerical.
ISODDOdd number.
ISEVENEven number.

Example Results.

Cell status determination.

ISBLANK

TRUE if nothing is entered in the target cell.

Function in cell B2.

FALSE if the cell is blank in the formula, such as ="".

Function in cell B2.

ISFORMULA

TRUE if the target cell is a formula.

Function in cell B2.
Function in cell B2.
Function in cell B2.

ISREF

TRUE if the designation is valid as a cell reference.

TRUE for cell number.
FALSE for Text.
TRUE for a cell range.
TRUE for the registered cell range name.

Cell data type determination.

ISTEXT

If the decision target is a string, it is TRUE.

A blank cell is FALSE, but a blank character is TRUE.

Decision targetResult
StringTRUE
NumericalFALSE
Formula ResultsThe results vary depending on whether the value is otherwise.
DatetimeFALSE
'1TRUE
="1"TRUE
No input in cell.FALSE
'TRUE
""TRUE

ISNONTEXT

The result is the reverse of the ISTEXT function.

ISLOGICAL

If the object to be judged is a boolean value such as TRUE or FALSE, TRUE is returned.

The string "TRUE" or "FALSE" will result in FALSE.

ISNUMBER

TRUE if the object to be judged is a number.

Decision targetResult
NumericalTRUE
StringFALSE
No input in cell.FALSE
'1FALSE
="1"FALSE
Formula ResultsTRUE if the result is numeric.

Numerical determination.

ISODD and ISEVEN.

Unlike the ISNUMBER function, a string that can be considered a number is treated as a number.

Decision targetResult
No input in cell.Determined as 0 (even).
Formula results are blank (e.g. ="")VALUE! Error.
Numbers as strings (prefixed with ', etc).

Full-width numbers.

Zero-fill numbers.
If it can be treated as a numerical value, it is considered as a numerical value and judged.
DecimalDetermined by rounding down to the nearest decimal place.

---

Links

Microsoft Excel Functions Information

Exit mobile version