Is Missing( " " ) returns True?
I would like to differentiate a space cell and an empty cell. The Is Missing() function interprets both as missing. Is there a better way? I am using JMP 16.2.0. New Table( "Example",
Add Rows( 1 ),
New Column( "Empty", Character, "Nominal", Set Values( {""} ) ),
New Column( "Empty Missing?",
Numeric,
"Continuous",
Format( "Best", 12 ),
Formula( Is Missing( :Empty ) )
),
New Column(
...
