I have an expression to pull the last name from a full name field that is typically formatted like last name, first name. However, in a couple of examples, I have a company name that contains no commas. How can I add an additional condition to the expression below to just return the full name value when there is no comma present?
Left([Names],InStr(1,[Names],",")-1)