PrevDay?

Is there anything like PrevDay?
I need to get something like this : “today() -1”. I know we have prevQtr, prevMth.

What’s the problem with x - 1? You know that you want to extract one day, so do it. You couldn’t do the same with months or quarters, because they don’t always the same length.

If you insist on encapsulating x - 1 in a method, just write one by yourself.

I was just wondering if there is something out of box, nothing else. Thanks!