H
Hani Varoqua
Combining Text fields that contain Null values
If you're using an expression to combine two fields
containing text values and one or both of the fields
includes Null values, use the & operator instead of the +
operator to combine the values. The & operator will
combine the values even if they contain Null values, while
the + operator will return a Null if either of the two
values is a Null. For example:
FullName: [LastName] & " " & [FirstName]
If you're using an expression to combine two fields
containing text values and one or both of the fields
includes Null values, use the & operator instead of the +
operator to combine the values. The & operator will
combine the values even if they contain Null values, while
the + operator will return a Null if either of the two
values is a Null. For example:
FullName: [LastName] & " " & [FirstName]