I have a performance evaluation where I am trying to calculate the total number of "exceeds ratings". I am using the following script and it works for a single field. I am now trying to calculate the total number of exceeds for multiple fields. this.rawValue is my calculating field. FieldName is the field the rating is entered. if the number entered is < 36 there should be no +1. So in other words, if I have 4 ratings entered that are > 36 my calculating field should say 4. This may be simple for most but I do not do this to often. Please help. Thank you!
if (FieldName > 36) then
this.rawValue =+ 1
endif
Amy