Hello,
I need help acquiring a VBA that can make a list of all the red cells that I've conditionally formatted with a range. The cells I've conditionally formatted can turn red, green, or yellow. When one of the cells turns red (meaning it's out of a given range) I would like for it to be copied onto another list either at the bottom of the excel spreadsheet or on a new one, whichever I can get help with. An example of one of the ranges would be
Red:
=IF(AND(OR($B$4<0.001,$B$4>0.004),$B$4>0,$B$4<=18),TRUE,IF(AND(OR($B$4<0.003,$B$4>0.008),$B$3>18),TRUE))
Green:
=IF(AND(AND($B$4>0.001,$B$4<0.004),$B$3>0,$B$3<=18),TRUE,IF(AND(AND($B$4>0.003,$B$4<0.008),$B$3>18),TRUE))
Yellow:
=IF(AND(OR($B$4=0.001,$B$4=0.004),$B$3>0,$B$3<=18),TRUE,IF(AND(OR($B$4=0.003,$B$4=0.008),$B$3>18),TRUE))
I've attached a reference spreadsheet. Any help would be appreciated.
Bookmarks