I'm filtering a Dataset as below:
DsSearchJob.Tables("Filter Grid").DefaultView.RowFilter = "JOBID Like '%" & strChar & "%' "
Is it possible to do the same thing but use the column ordinal number in place of the column name (JOBID)?Ie. In fake code:
DsSearchJob filter = column1 value like 123