Hi!
I use a lookup to see if a client has a specific module activated.
When the lookup returns a true, the visibility of an image must be false and vice versa.
It would be easy if the image must be visible when the module is true, because I can then just use the lookup.. But is there a way to use the opposite?
Like use a ! before the formule:
Visibility of image : !Lookup(get boolean return)
This I tried, but didn't work.
I also have tried:
If(Lookup(get boolean return) = true ; false ; true)
If(Lookup(get boolean return) = Ja; false ; true)
If(Lookup(get boolean return) = "Ja"; false ; true)
But I get the error that types cannot compare.