Does anybody know how to
" Add a calculated field named CustomerName as the first column that is either the company or the concatenation of the last name, a comma a space, and the first name. Sort in ascending order by Customer Name ?"
I've came up with CustomerName: IIf([CompanyName] , [LastName] & ", " & [FirstName])
and it doesn't work...help!