I am about to lose my mind! Here's the deal. I have to have a form calculate conditions based on the following:
If (A >= A1 or B >= B1) then
Results1 = "Pass"
elseif
(A < A1 or B < B1) then
Results1 = "Fail"
I cannot quite get the 2 conditions to jive. If A is greater than or equal to A1 then I have no problem getting the Pass result. However is condition one is okay and condition 2 is not, B IS less than B1, I cannot get the results box to trigger a fail.
What am I missing?!
George Kaiser