Skip to main content

FALSE

Basic Overview

Please note that FALSE will only return a 0 for every defined row in the input. If you need a 0 for each undefined row, look at the IS_NA function, and invert its result with FALSE.


Description

Returns false (0) for every defined value in the input.

Signature

FALSE(Node)

Parameters

  • Node: Input node, specified using the node name in single quotes (e.g. 'Profit')

Example

DecimalNode =

Year

Revenue

2018

-24.5

2019

95

2020

110

Output FALSE('DecimalNode') =

Year

Revenue

2018

0

2019

0

2020

0

Products =

Year

Product

Revenue
2018A67
2019B85
2020A954
2020B-54

Output FALSE('DecimalNode'+'Products') =

YearRevenue
20180
20190
20200

A=

YearRevenue
201895
2019
2020236

Output FALSE('A') =

YearRevenue
20180
2019
20200
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.