I use simple if statement and would like to retrieve true or false as Boolean type. I did like this:
Iif(text = "something", Convert.ToBoolean(True), Convert.ToBoolean(False))
I was trying also this:
Iif(text = "something", True, False)
For both cases i receive false, but my expression is for sure true. What i am doing wrong?