Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 857 Bytes

not-function.md

File metadata and controls

37 lines (25 loc) · 857 Bytes
title manager ms.date ms.audience ms.topic f1_keywords ms.localizationpriority ms.assetid description
NOT Function
lindalu
03/09/2022
Developer
reference
Vis_DSS.chm82251469
medium
65873b32-2406-7c33-8e68-802461f467b2
Returns TRUE (1) if logicalexpression is FALSE. Otherwise, it returns FALSE (0).

NOT Function

Returns TRUE (1) if logicalexpression is FALSE. Otherwise, it returns FALSE (0).

Syntax

NOT(logicalexpression)

Parameters

Name Required/Optional Data Type Description
logicalexpression
Required
String
The logical expression to evaluate.

Return value

Boolean

Example

NOT(Height > 0.75 in)

Returns 1 if Height is less than or equal to 0.75 inches. Returns 0 if Height is greater than 0.75 inches.