I have an ASP form with a series of calculation fields that result in a field called QuotaAttained. I need that field to remain as is for the user but need it to dump into another field called QuotaAttainedCalc to continue with some calculations. That is not the problem. The problem that I have is that I need QuotaAttainedCalc to drop to 200 if the number from QuotaAttained is greater than 200. I have not done that before so I could use some help. Thanks in advance.
Quickest way is to leave the calculations as they are and add as the last step: If QuotaAttained > 200 Then QuotaAttainedCalc = 200 Code (markup):