I am new to Access reports and forms. Yes I hate admitting it. I am familiar with the database part but not with reports and forms.
I have come across this peculiar expression in Access expression builder which i cant deconstruct
=IIf(([value1] & “”=””) Or ([value2] & “”=””),””,[value3])
Please understand that I have sufficient experience with Crystal Reports and i understand what an iif statement is .
But I have not come across anything like this
- What exactly does & “”=”” do?
- Is this some sort of regular expression in Access?
- Can you help me by providing links so that I can read up on this in depth?
Thanks a ton in advance
Cheers!
It is appending an empty string to the value to avoid Null.
You could say it this way:
Further explanation re comment
Let us say Value1 is Null
However
Let us say Value1 = “”
However
Let us say Value1 = “abc”