Skip to main content

NOT

Checks if the specified logical value is -true or -false. The function returns -true if the argument is -false and -false if the argument is -true.

Syntax

expression.NOT(arg1);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | number | string | booleanA value or expression that can be evaluated to -true or -false.

Returns

boolean

Example

This example shows how to сheck if the specified logical value is true or false. The function returns true if the argument is false and false if the argument is true.

// How to negate a boolean value.

// Use a function to get the opposite of the boolean value.

const worksheet = Api.GetActiveSheet();

let condition = 12 < 100;
let func = Api.GetWorksheetFunction();
let ans = func.NOT(condition);

worksheet.GetRange("C1").SetValue(ans);