Hello
I have a query that returns results based on customer name and year.
In the dataset I have many rows like customerID, ProductType, ProductDescription.
After I get my first dataset for customer/year I then want to find all records where ProductDescription = Apple and count that as 1.
Right now I have something similar to this: AppleCount: IIF([ProductDescription]=[Apple],1,0)
When this runs I get a pop-up box asking for the Parameter for Apple.
The ProductDescription field has a dropdown where the user can choose Apple, Orange, Banana which is stored in tblProdDescription.
Do I need to put in my expression the original table where the dropdown is located? I'm not sure how to stop the Parameter pop-up.
Thanks!
I have a query that returns results based on customer name and year.
In the dataset I have many rows like customerID, ProductType, ProductDescription.
After I get my first dataset for customer/year I then want to find all records where ProductDescription = Apple and count that as 1.
Right now I have something similar to this: AppleCount: IIF([ProductDescription]=[Apple],1,0)
When this runs I get a pop-up box asking for the Parameter for Apple.
The ProductDescription field has a dropdown where the user can choose Apple, Orange, Banana which is stored in tblProdDescription.
Do I need to put in my expression the original table where the dropdown is located? I'm not sure how to stop the Parameter pop-up.
Thanks!