I am trying to evaluate a database field that is (in SQL Server 2000) labelled as varchar, 2000. I assumed that this was just a very long string field, and tried to implement an if-then-else formula based on the contents of this field. However, when I try to run the formula, it comes up with an error message that says "blob fields and memo fields" are not valid field types (or something like that).
Does anyone know how to evaluate a field with a string length above 254 characters without changing the database field?
Here is the example if-then-else statement:
If "ACD" in {Table.filed}
Then 1
Else 0
Thanks in advance for any help!
Does anyone know how to evaluate a field with a string length above 254 characters without changing the database field?
Here is the example if-then-else statement:
If "ACD" in {Table.filed}
Then 1
Else 0
Thanks in advance for any help!