GasGiant
|
well, if all of the costs are over a certain amount, you could use a SQL query to zero out last and avg. you could also filter on some other code, like class if that is unique for the items in question. people here could help you with the query, which would be run in the Pervasive Control Center. another option would be to do it with Maintain Database, which would be a little more tedious, but more direct, as well. Here is an example of a query that would grab all items with an average cost over $10 SELECT bkic_prod_code, bkic_prod_avgc FROM BKICMSTR WHERE bkic_prod_avgc > 10.00 AND bkic_prod_type = 'R' this would give you a list and a count of purchased parts that cost over ten bucks. you may have a different number for the dollar figure and you may need to consider type N items as well as type R once you tweak it to the point that your list is what you want, an update query can be written to do the dirty work.
|