Forum Discussion
ChrisChris
8 years agoQrew Assistant Captain
Let's take a field called [Verify], it is of type formula text. Below is its code.
Case(
[value],1,"OK",2,"OK",3,"Bad",4,"Worse"
)
So what we've done in [Verify] is make its text value either "OK", or "Bad" Or "Worse", depending on the value of [value], when [value] is 1 or 2 or 3 or 4.
If 1 is true, then "OK". IF 2 is true, then "OK", if 3 is true, then "Bad", if 4 is true, then "Worse".
Does this make sense?