In Access97, I have a table containing two fields "Rate" and RenewalRate". I created a query and would like it to return the most recent value of the two. Using "Rate" as the primary field, If "RenewalRate" has no value then return the value of "Rate". I used the following expression:
CurrentRate: IIf(IsNull([RenewalRate]),"",[Rate])
...But I got the wrong result.
Please help.
Thanks.
CurrentRate: IIf(IsNull([RenewalRate]),"",[Rate])
...But I got the wrong result.
Please help.
Thanks.