I have the following if if:
if ucase(displayanzeige) = "Y" \ or isnull(displayanzeige) \ and ucase(bstatus) = "2" \ or ucase(bstatus) = "1"
The first part of the if condition works:
if ucase(displayanzeige) = "Y" \ or isnull(displayanzeige)
But the second part does not work:
and ucase(bstatus) = "2" \ or ucase(bstatus) = "1"
What is wrong with the if clause? please, help
source share