Hide a specific word from the report

Matin_Murad

Member
Local time
Today, 01:58
Joined
Jul 1, 2020
Messages
37
I want to hide or delete the words [cartoon] and the word [set] with parentheses when opening the report and keep them in the table

Without using the query


name table :: sales
 

Attachments

  • subject.png
    subject.png
    8.7 KB · Views: 103
  • s.c.accdb
    s.c.accdb
    640 KB · Views: 103
I'm not sure of your context, but often, when you don't want something to show in a report(output) but you want it to stay in the underlying table, you omit that "something" from the report's record source. For example, exclude the term(s) from the query so they will not be present in the report.
 
Since you say you don't want to use the query, you could have a textbox on the report:

=Replace(FieldName, "Cartoon","")
 

Users who are viewing this thread

Back
Top Bottom