Page 1 of 1

Expression for Footer

Posted: Mon Oct 10, 2022 5:21 pm
by dwabare92
Is there a way to write an expression to show a footer? In Crystal I've done this

To suppress I would use: if UCASE({PLMain.CustCode}) = "HYPER" then false else true

Re: Expression for Footer

Posted: Tue Oct 11, 2022 11:49 am
by Lech Kulikowski
Hello,

You can set the necessary expression in the Enabled property:
ToUpperCase(PLMain.CustCode) == "HYPER"

Thank you.