Data Filter - Selecting all when there is no alternative value to where does not equal statement (=!)
Looking for some help to understand the behavior or a better way to script this.
Writing a script to catch exceptions in the data. When version is GP but active is not X.Names Default To Here( 1 );
dt = Current Data Table();
df = dt << Data Filter(
Location( {138, 181} ),
Add Filter(
columns( :Active, :Version ),
Where( :Active != "X" ),
Where( :Version == "GP" )
)
);Then the rest of the s...