Dumb question - how to get pipe character in LS?

I’m just trying to use the pipe character to do a db.Search. I can’t get the character to be recognized when the agent runs. Here’s what I’m trying to do:

set dc = db.Search({Form = “Invoice” | Form = “Slip”}, Nothing, 0)

No matter what I do, though, the pipe disappears when the code runs. I tried several things, even using Chr$(124), but nothing is getting the pipe to show up. Any help would be appreciated.

Subject: working pipe in lotus script

In my prg. I used code like below and its works fine.

SearchFormula$={Form = “Invoice” | Form = “Slip”}

set dc = db.Search(SearchFormula$, Nothing, 0)