Z Zach Dec 8, 2009 #1 How do I loop through a column and change different button's colors based on corresponding cells values??
How do I loop through a column and change different button's colors based on corresponding cells values??
D Don Guillett Dec 8, 2009 #2 This one liner should get you started. Sub changeShapecolor() ActiveSheet.Shapes("Rectangle 9") _ .Fill.ForeColor.SchemeColor = 12 End Sub
This one liner should get you started. Sub changeShapecolor() ActiveSheet.Shapes("Rectangle 9") _ .Fill.ForeColor.SchemeColor = 12 End Sub