Why does the first statement yield correct results, but the IIf(IsNull) statement does not? (It places the same value in both columns, subtracting the PickupRequired Fee for both True and False conditions, whether PickupRequired box is checked or unchecked.)
This works: NetDonation: IIf([PickupRequired]=0,[DonationValue],[DonationValue]-8.75)
This doesn’t work: NetDonation: IIf(IsNull([PickupRequired]),[DonationValue],[DonationValue]-8.75)
Can someone please tell me what's wrong?
Thank you much.
This works: NetDonation: IIf([PickupRequired]=0,[DonationValue],[DonationValue]-8.75)
This doesn’t work: NetDonation: IIf(IsNull([PickupRequired]),[DonationValue],[DonationValue]-8.75)
Can someone please tell me what's wrong?
Thank you much.