Need to find a way to highlight the items in a report that are duplicates. It's OK that they are duplicates, because they fall into separate groups based on an item type.
Database records for an item are assigned a P or S depending on the datatype (Purchases / Sales). See example below of formula to title the group based on the item type.
if {itm.typ}= "P" then "Purchases" else
if {itm.typ}= "S" then "Sales"
Items in the database can appear in the report in both the P group and the S group since they can be both purchased and sold. I want to be able to highlight the items that appear in both groups. The report looks like this:
Item class Group:
Item type group (see formula above):
Item ID
The item type group and Item ID are displayed for both P and S type items in the footer. The only group in the header is the item class group. The details section is hidden. The report contains values for qty on hand, weigh, cost, etc for each item ID.
Thoughts on how to select the duplicates is appreciated.
Database records for an item are assigned a P or S depending on the datatype (Purchases / Sales). See example below of formula to title the group based on the item type.
if {itm.typ}= "P" then "Purchases" else
if {itm.typ}= "S" then "Sales"
Items in the database can appear in the report in both the P group and the S group since they can be both purchased and sold. I want to be able to highlight the items that appear in both groups. The report looks like this:
Item class Group:
Item type group (see formula above):
Item ID
The item type group and Item ID are displayed for both P and S type items in the footer. The only group in the header is the item class group. The details section is hidden. The report contains values for qty on hand, weigh, cost, etc for each item ID.
Thoughts on how to select the duplicates is appreciated.