Forum Discussion
QuickBaseCoachD
9 years agoQrew Captain
An example of a formula is a formula field called Valid? of type formula checkbox
IF([entry field] >=91.5 and [entry field] <= 94.8,true, false)
which is equialent to
IF([entry field] >=91.5 and [entry field] <= 94.8,true)
which is also equivalent to
[entry field] >=91.5 and [entry field] <= 94.8
ie with a boolean you can make a statement and the system either says its true or called Bullshit on you and says its false.
IF([entry field] >=91.5 and [entry field] <= 94.8,true, false)
which is equialent to
IF([entry field] >=91.5 and [entry field] <= 94.8,true)
which is also equivalent to
[entry field] >=91.5 and [entry field] <= 94.8
ie with a boolean you can make a statement and the system either says its true or called Bullshit on you and says its false.