Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
One solution would be to not include the whole text of the knowledge base text on the report. I do have a way to allow that field to still be searched, even though it's not on the report. That way you could use the filter box to filter the results for a key word and still get hits if the text was in the body of that large field.
QuickBaseCoachD
7 years agoQrew Captain
Make a formula rich text field called either like [Search target] or a really skinny name such as a dot [.]
add that to a report as say the last column. If it's labelled as a dot either as the native field name or as a column override field name, no one will even notice that it's there.
Basically it's a cheat. For performance reasons Quick Base only searches fields that are on a table report. So this makes a fake hyperlink but the only visible words are null - empty quotes. but it's a field on the report so it gets searched.
var text URL = [my search target field]; var text Words = "";
"<a href=" & $URL & ">" & $Words & "</a>"
add that to a report as say the last column. If it's labelled as a dot either as the native field name or as a column override field name, no one will even notice that it's there.
Basically it's a cheat. For performance reasons Quick Base only searches fields that are on a table report. So this makes a fake hyperlink but the only visible words are null - empty quotes. but it's a field on the report so it gets searched.