So if you have been around long enough you may remember that when searching a table report, the filter used to apply to all searchable fields. So if you had 1,000 fields and only 8 on the report, it would search all 1,000 fields.
The Quick Base brain trust decided that it served the "greater good" (sounds like a
Spock Quote .. "the needs of the many outweigh the needs of the few") in terms of app response time and no doubt their server hardware budget, to change the behavior for filtering table reports to only search the fields on the report.
Alas, what about other fields to search (ie filter) that are too clutter-some to be on the report like maybe a phone # or a fax # or an ugly log field.
No problem,
Create a formula rich text field field perhaps called [.] ( just a dot) or [Search target] and add it as the last column of the table report.
var text URL = [my ugly log field];
var text Words = "";
"<a href=" & $URL & ">" & $Words & "</a>"
So this will be a field named [.] which is about as skinny as they come and no one will notice. It is a hyperlink to no where and there are no words to click on so it will be blank to the naked eye.
But it is a searchable field on the table report and it will hence be searched by the filter box. :)
.