Sam Yes I was able to add in the Date criteria by simply adding the Delivery Date to the Market Flag calculated item: IF ( ( 'MARKET'n Contains 'p_RX MKT RT1'p ) AND ( 'DLV DTE'n Contains 'p_RX DTE RT1'p ) ) RETURN 2 ELSE 0 I'm using two Drop Down List Controls to create parameters for both the Market and the Delivery Date. In those controls, I select the Market and Delivery Date. Then the calculated item code, above, flags any data with the chosen Market and chosen Delivery Date as a 2 (else it is flagged 0). I repeat this in a second object/List Table... I create the two drop down list controls, create the parameters, and create a second calculated item for a second flag (same code as above except I flag it 1 instead of 2). In a third list table, using the same basic items I have in the first two list tables, I add the flags together. I have a filter on the object that is set to 3. Thus if the two flags are 1 and 2 (signifying that the data is in both the selected Market and the selected Delivery Date) they sum up to 3 and will show in the table. I have a fourth table that does the same as above but I set the filter to 1 through 2; which shows me the drugs that are different among the two selected Markets/Delivery Dates. Hope that all makes sense! Thanks
... View more