Hi,
I am attempting script a plot Y by X plot and constrain the rows to those missing in column Z. I am modifying some existing code and the local filter is defined
as
Add Filter( columns( :Fid_data_check ), Where( :Fid_data_check == "not found" ) )
but this depended on the creation of a column externally in Excel that was either "OK" or "Not Found". I am moving the entire workflow to eliminate the need of Excel and would like to take advantage of the is missing values handling.
I am trying:
Add Filter( columns( :Z ), Where( is missing(:Z) ) ),
The Log window says that:
Range value cannot be missing.
How do I need to modify the Add Filter line?