Hello, All
I am trying to hide and exclude all rows in a data table, that do not meet a given criteria. Such criteria is given by the values in one of the columns [:Hour].
I applied the formula to another column, but only worked within the cells of that column, and not the entire data table.
This is the script I am using [which is not working for the entire data table]:
dt = Current Data Table();
If( :Hour == 6,
dt << As Row State( 0 ),
dt << As Row State( 7 )
);
Any help will be appreciated,
Jose GL