should not come up as the SKU does not have WS* in them
Item: 'LSM' & Right([SKU],3)
In the criteria cell for [SKU]: Like 'WS*'
The SQL code may be something like this:
SELECT 'LSM' & Right([SKU],3) As Item, qty
FROM yourTable
WHERE SKU Like 'WS*'
UNION ALL SELECT 'SCONCE', Sum(qty)
FROM yourTable
WHERE SKU Like 'WS*'
Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886