zathrus777
Programmer
I have two colums National rate 1 and 2 which if either or both have a value in needs to have Listed in a third column else Loadbanded.
This works but I cant work out why so I supect a bug:
Listed/Loadbanded: IIf(((IsNull([FE_ANNUAL_VALUES]![NATIONAL_RATE1] And IsNull([FE_ANNUAL_VALUES]![NATIONAL_RATE2])))
Or
(IsNull([FE_ANNUAL_VALUES]![NATIONAL_RATE1] Or IsNull([FE_ANNUAL_VALUES]![NATIONAL_RATE2])))),"Loadbanded","Listed")
The first part is my check for any value in both and the second for either of the columns. Is there a is not null?
Thanks
This works but I cant work out why so I supect a bug:
Listed/Loadbanded: IIf(((IsNull([FE_ANNUAL_VALUES]![NATIONAL_RATE1] And IsNull([FE_ANNUAL_VALUES]![NATIONAL_RATE2])))
Or
(IsNull([FE_ANNUAL_VALUES]![NATIONAL_RATE1] Or IsNull([FE_ANNUAL_VALUES]![NATIONAL_RATE2])))),"Loadbanded","Listed")
The first part is my check for any value in both and the second for either of the columns. Is there a is not null?
Thanks