I have a query that contains the following:
Field1: Replace([Field1],"ü",", ")
This works great if there is something in Field1. The data in Field1 usually looks like 1ü2, 0ü0, 1ü1, etc. However, if a record has nothing in Field1 I get the following error:
This expression is typed incorrectly, or it is too complex to be evaluated. For example, a numeric expression may contain too many complicated elements. Try simplifying the expression by assigning parts of the expression to variables.
If I change the field to Field1: Field1 the query runs with no errors. Is there a way to deal with the possibility of Field1 being blank?
Thanks!