TRUE Function
Returns the logical value TRUE.
Syntax
Basic Example
Return a TRUE value
=TRUE()The function evaluates to the logical constant TRUE with no input needed.
Advanced Examples
Example 1: Use inside a condition
Force a branch of an IFReturn TRUE from a formula
=IF(TRUE(),"Yes","No")Example 2: Explicit boolean in a check
Compare a cell to a targetReturn TRUE on a match
=IF(A1=10,TRUE(),FALSE())How TRUE Works
TRUE is a function wrapper around the TRUE logical constant. It performs no computation and accepts no arguments; it is provided for compatibility and explicit boolean building.
Important Notes & Limitations
Takes no arguments; supplying any returns #VALUE!.
Mostly redundant because the literal TRUE works the same in formulas.
Stored as a logical value, not the text "TRUE".
Common Errors & Fixes
#VALUE! errorPassing an argument such as =TRUE(1).Fix: Leave the parentheses empty: =TRUE().
Download Practice File
TRUE
truePractice TRUE with Real Data
Download a sample CSV file with pre-populated data and practice exercises for the TRUE function. Works in both Excel and Google Sheets.
File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps