I would like to work with the variable "Status" in a before print event.
If the {Requirements._Status} contains the value "zu erledigen", the variable status should be filled with a "X" otherwise the variable Status should be empty.
I tried this:
if Requirements._Status = "zu erledigen"
Status = "X";
else
Status = "";
but alsways got an syntax error

How should I modify the code, so that it will work as expected?
Thanks for your help!
Dirk