CR10, sql db.
A basic 'dead inventory report'
Grouped by vendor,
detail is part id, description, months since last sale, item cost, total cost.
Months since last sale is a formula
Detail is suppressed using the section expert, checking
suppressed with {@MonthsSinceLastSale} >=-5 in the x-2 field.
This gives me what I need as far as month since last sale. Now I need to sum the total cost of the NON-suppressed fields. I read that I can use a running total but have to reverse my suppression formula?
Any guidance appreciated.
Julie
CR 9,10 CE10 Sql DB
A basic 'dead inventory report'
Grouped by vendor,
detail is part id, description, months since last sale, item cost, total cost.
Months since last sale is a formula
Code:
if isnull({orders.closed}) then //checking to see if any sale since original inventory
datediff("m",currentdate,date(2004,6,28))
else
datediff("m",currentdate,maximum({ORDERS.CLOSED},{ITEM.PARTID}))
Detail is suppressed using the section expert, checking
suppressed with {@MonthsSinceLastSale} >=-5 in the x-2 field.
This gives me what I need as far as month since last sale. Now I need to sum the total cost of the NON-suppressed fields. I read that I can use a running total but have to reverse my suppression formula?
Any guidance appreciated.
Julie
CR 9,10 CE10 Sql DB