Here is the code I have. I have tested it and it works on the one number
field. (in Formcalc)if ((FS270Pt1 >= 28.5) and (FS270Pt1 <= 38))then
FS270Pt1.font.fill.color.value = "0,0,0"else
FS270Pt1.font.fill.color.value = "255,0,0"endifI have 15 number fields
that I need to apply this color font to should the criteria be met. I am
trying to use a While statement to achieve this. From what I know I have
deduced that it would look something like this:var i = 1while (i <=
15)do if ((FS270Pt(i) >= 28....