I am trying to write a formula but I am getting an error 'The formula "Activity Completed" resulted in a string but the field is numeric Use ToNumber (...) if this is correct. (Expression #1)
.
The formula is as follows:
If [Activity Completed]=0 THEN 'NO'
ELSEIF [Activity Completed]=1 THEN 'YES'
ELSE
Null()
ENDIF
The data type is Int16. I tried to change the activity completed from 'Int16' to 'V_WString') at the select stage but then got a different message.
Any ideas how I can get the above formula to work?