Hi,
I need help building a very simple excel macro that iterates through all cells of the table, checks if they are not a particular color and if so changes to another color. So if the two colors are called BLANK and FILLED respectively, then the psedocode would look like:
for(all cells i){
if(i->color != BLANK)
i->color = FILLED
}