↧
Form Calc
I have some fields that total, I want the the field to show no more that 50 even if it is higher. How do I write the if the totals of the 4 fields is greater that 49 then show 50 in this field?
View ArticleRe: Form Calc
Let's say you have got the value of total in a variable say numTotal. You want to display it in a field named numField1. You can write a formCalc or javascript to do that. Below is an example of how to...
View ArticleRe: Form Calc
Hi thanks for your response, here is what I ended up with and works perfectly this = DropDownList1 + DropDownList2 + DropDownList3 if (this>49) thenthis = 50elsethis = thisendif Thanks again
View Article