Query
=> RE: Query
Hello Wolfgang,__There are a few ways to get what you want:____1. If you just need a True / False result for the presence of the string inside the field, you can create a calculated field with the expression:____"Test" $ FIELD____Which will search for an occurrence of the word Test in the field and return T if it^s there and F if not.____2. If you need to find the location of the text within the field, use the expression:____AT("Test", FIELD)____And it will return a numeric value of the location where the text value is within the field (the first occurence).____3. If you need to find the location of the Nth occurrence of a value within a field, you can use the expression____STRSEARCH("Test", FIELD, 2)____Which will tell you the location where the 2nd occurrence of Test happens in FIELD
Chris Strasser
Liveware Publishing, Inc.
Work bigger.
Liveware Publishing, Inc.
Work bigger.
==> RE: Query
Hi,__when I go into pulldownmenue Database->Querry I can not choose "Test"$Field. There is only possible Field with the comparison "equal to", "greater than" and so on.__How can I add "Test"$Field as a query into the report?____Thanks__Wolfgang
===> RE: Query
You need to create a calculated field first, calling it something like Query_Selector or Selection_Calc. In the expression box, you^d put the equality check from the above post.____Then in your report^s query, you should be able to find the field Query_Selector and compare it to True or False with an Equals or Not Equals comparison.
Chris Strasser
Liveware Publishing, Inc.
Work bigger.
Liveware Publishing, Inc.
Work bigger.