Count if yellow: a dumb yet useful vba function
What a time to be alive: soon enough we are going to see even electric kettles with GTP-4 capabilities and yet, we still don’t have a proper way to count cells based on colour in Excel.
It’s not a big deal, just a few lines in VBA that, since it’s not the first time I’m needing, I’ll just paste here:
But what if you need to count cells based on another colour? How would you know the colour index? With another dumb yet fairly useful custom function, of course:
Just select the coloured cell you need to pick the colour index from, and you’ll get the corresponding integer.
Now, yes, hardcoding values is bad practice. Even in Excel, I guess. So to make the colour index dynamic, you can add another argument to the first function:
With the second argument (ColourRange), point to the cell with the colour you are interested into getting and you are ready to go.
Now, what if you need to manage more than one colour and more than one increment type? Say, add 1 if “yellow” and 0,5 if “blu”
This should do: