K
KC
For a DataView.Rowfilter can I use more than one expression? I want to
filter out two different things.
For example can I take:
dv.RowFilter = "MTX <> 'Customer Forcast'"
and
dv.RowFilter = "MTX <> 'Actual vs. Forcast'"
and combine them into one statement?
dv.RowFilter = "MTX <> 'Customer Forcast' And MTX <> 'Actual vs. Forcast'"
Is this format correct? If not, what's the format?
filter out two different things.
For example can I take:
dv.RowFilter = "MTX <> 'Customer Forcast'"
and
dv.RowFilter = "MTX <> 'Actual vs. Forcast'"
and combine them into one statement?
dv.RowFilter = "MTX <> 'Customer Forcast' And MTX <> 'Actual vs. Forcast'"
Is this format correct? If not, what's the format?