Also, you might consider using + instead of &. The difference is that + does not propegate nulls. For example, If I had two fields, FirstName and LastName, and LastName = "Jones" and FirstName was null:
[LastName] & ", " & [FirstName] = Jones,
[LastName] & (", " + [FirstName]) = Jones
Can...