Hi,
i have a dataset (ds), with a table (T1).
T1 has a number of columns.
2 of which are Id and Code.
I get passed a Code.
How do i search T1 Code column and return the corresponding Id to a variable?
similar to a sql search with a where clause.
(Select T1.ID from T1 where T1.Code = 'code')
Thanks.