I'm trying to create a formulated field that will display the record delivery status, so that I can filter the status for reporting. This formula appears to be working as I'm creating it in the expression builder; however, when I go to the datasheet view it shows "#error". Can anyone see what I am doing wrong? Any help is appreciated.
RStatus:
IIf([STATUS]="Approved" And (IsNull([PROVIDEDATE])),"Pending Delivery",
IIf([STATUS]="Denied","Denied",
IIf([PROVIDEDATE]>1,"Delivered","")))
RStatus:
IIf([STATUS]="Approved" And (IsNull([PROVIDEDATE])),"Pending Delivery",
IIf([STATUS]="Denied","Denied",
IIf([PROVIDEDATE]>1,"Delivered","")))