you are doing these and exporting to excel to calculation the multiplication?SELECT COUNT(Distinct A2.PART) as Units, SUM(A2.Quantity*A2.Current_Current_price) as DollarInventory , A2.SEGREGATION_CODE, A2.PART,A1.SITE_CODE, A2.QUANTITY,A2.CURRENT_PRICEFROM SC01 A1 INNER JOIN ITEM A2 on A1.Segregation_Code = A2.Segregation_Code and A2.Status_Avail = 'Y' AND A1.Site_Code = 'Tampa'Group By A2.SEGREGATION_CODE, A2.PART,A1.SITE_CODE, A2.QUANTITY,A2.CURRENT_PRICE
won't something like that work?
Poor planning on your part does not constitute an emergency on my part.