referencing conditional formatting

  • Thread starter Thread starter David Turner
  • Start date Start date
D

David Turner

Using XL2000, I have made a simple inventory/order workbook consisting of 2
sheets: Food Items and Order Sheet

Currently in J4 of 'Food Items'
=IF(AND(H4<>"",H4>=G4),"Reorder!","")
Copied down to J41
This results in the flag to reorder when inventory reaches a certain level

Currently in A6 of 'Order Sheet'
=LEFT('Food Items'!I4,1)*COUNTIF('Food Items'!J4,"Reorder!")
Copied down to A43
This tells me how many cases to order

Works as intended, but I would like something to dazzle others <g>

First I would conditionally format the items list in A4:A41 of 'Food
Items' to red to flag for reordering. That's the easy part.

Can I adapt my formula on 'Order Sheet' to recognize the changed color of
food items on 'Food Items'?
Something like this in A6 of 'Order Sheet'
=LEFT('Food Items'!I4,1)*COUNTIF('Food Items'!A4, Red)
 
Back
Top