Okay let's look at this:
=IIf([text28]=0,[qtyreqd]-[qtyrecd],[qtyreqd]-[qtyrecd]+[text28])
Where Text28 =1, qryreqd = 53 and qtyrecd = 53
So:
=IIf(1=0,53-53,53-53+1)
So, 1 does not equal 0, therefore we are looking at 53-53+1. So, 53-53 = 0 and then +1 = 1.
If you want -1, then it's an...