Search( Table, SearchString, Column1 [, Column2, ... ] )
- Table - Required. Table to search.
- SearchString - Required. The string to search for. If blank or an empty string, all records are returned.
- Column(s) - Required. The names of columns within Table to search. Columns to search must contain text. Column names must be strings and enclosed in double quotes. However, the column names must be static and cannot be calculated with a formula. If SearchString is found within the data of any of these columns as a partial match, the full record will be returned.
Search(DS, TextInout1.Text, "Name", "Code", "About")
TQ
Hope this helps.
TQ