I currently am using the following coding to calculate a score based upon the GPA that is found in the form field txtBSNCummulativeGPA.
=IIf([txtBSNCummulativeGPA]>=4,3,IIf([txtBSNCummulativeGPA]>=3.9,2.8,IIf([txtBSNCummulativeGPA]>=3.8,2.6,IIf([txtBSNCummulativeGPA]>=3.7,2.4,IIf([txtBSNCummulativeGPA]>=3.6,2.2,IIf([txtBSNCummulativeGPA]>=3.5,2,IIf([txtBSNCummulativeGPA]>=3.4,1.8,IIf([txtBSNCummulativeGPA]>=3.3,1.6,IIf([txtBSNCummulativeGPA]>=3.2,1.4,IIf([txtBSNCummulativeGPA]>=3.1,1.2,IIf([txtBSNCummulativeGPA]>=3,1.0)))))))))))
In some cases, the txtBSNCummulativeGPA field might be blank, and in such cases I would like the function to then apply the value in the txtOtherBSNGPA field on this form to the calculation above. So essentially if txtBSNCummulativeGPA is null, then factor txtOtherBSNGPA. If the txtBSNCummulativeGPA has a value, that should be the default.
Thanx!