Returns the logical value TRUE.
TRUE()
The TRUE() function has no arguments, and always returns the logical value TRUE.
TRUE()
returns TRUE
NOT(TRUE())
returns FALSE
Scenario: Imagine you're managing a sales pipeline, and you want to quickly identify leads that are "High Priority" and are also "Currently Engaged" with a sales representative. You have a system where if a lead is manually marked as "High Priority" in one column, it should trigger a specific follow-up action.
Table:
Lead ID | Lead Status | Priority | Currently Engaged | Action Required | ||
|---|---|---|---|---|---|---|
A | B | C | D | E | ||
1 | L001 | Prospect | TRUE | Yes | Initiate Priority Follow-up | |
2 | L002 | Qualified | FALSE | Yes | No immediate action | |
3 | L003 | Prospect | TRUE | No | No immediate action | |
4 | L004 | Closed Won | FALSE | Yes | No immediate action | |
5 | L005 | Prospect | TRUE | Yes | Initiate Priority Follow-up |
Explanation:
Formula using TRUE():
In cell E1, you could use a formula like this:
IF(AND(C1=TRUE(), D1="Yes"), "Initiate Priority Follow-up", "No immediate action")
Let's break down this formula:
PRODUCT & FEATURES
RESOURCES
Terms | Privacy | Spam Policy
© 2026 Zapof