I am trying to find a way in CR2013 to only select records if every record under a key does not have a value. I don't see a way to use the SQL: NOT EXIST in CR.
I've tried to create group selections, which seem to be the best way to go with this, to match these requirements but I cannot.
Basically, if this is my table below:
Jobid Transaction Type JTD_COST
1 3/31/16 1 1000.00
1 4/1/16 2 500.00
2 6/1/16 1 1000.00
I want to display only the contents, summed, of an entire key if any record in that key does not have a type of 2.
When I use group formulas, I still get all the records that have the intermediate transaction amount. How can I do this?