filteredrows = Server_Tables[i].Select("(TRIM(Tool Stored Place and Sheduled)='" + searchtext + "') OR (TRIM(Workgroup server to connect to dataset within the tool)='" + searchtext + "')");
while executing, i am getting "Syntax error: Missing operand after 'Stored' operator."
It seems a bit weird, but if you really have two columns named as above then your expression should be:
And this only if your searchtext variable doesn't contain any single quote.
The square brackets around the column names are required due to the presence of spaces in column names