In Salesforce Reports, when displaying formula fields that combine the TEXT() and ISBLANK() functions on a Date or Date/Time field, there may be inconsistencies between the report's results and the values displayed on the records themselves.
Examples:
To avoid inconsistent results between reports and record views, remove the TEXT() function from any formula that uses ISBLANK() on a Date or Date/Time field.
Why this happens: The TEXT() function converts a Date/Time value to a string, including the "Z" UTC timestamp suffix (for example, "2024-01-15T00:00:00.000Z"). This causes ISBLANK() to evaluate to FALSE even when the Date/Time field appears visually blank on the record — because the underlying database value is not an empty string; it is a formatted timestamp string.
The fix: Using ISBLANK() directly on a Date/Time field — without wrapping the field in TEXT() — produces accurate and consistent results in both the record view and reports.
Example before (inconsistent): ISBLANK(TEXT(CloseDate__c))
Example after (correct): ISBLANK(CloseDate__c)
000386828

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.