Notifications
Clear all
Topic starter
Basically this is what I want to do:
If obsterm<=8 characters then "statement \t\t" else
If obsterm>9 and <15 then "statement \t" endif endif
How would I set that up?
Posted : January 15, 2014 12:22 am
Look in the help file for SIZE.
You will end up with something like
If size(obsnow("obsterm"))<=8 then "statement \t\t" else If size(obsnow("obsterm"))>=9 and size(obsnow("obsterm"))<15 then "statement \t" else endif endif
Also, your original logic didn't include doing anything if the size was exactly 9....
Posted : January 15, 2014 7:58 am