View Single Post
 
Old 10-25-2013, 12:08 PM
BobBridges's Avatar
BobBridges BobBridges is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: May 2013
Location: USA
Posts: 700
BobBridges has a spectacular aura aboutBobBridges has a spectacular aura about
Default

Hi, trueimage. You ask this in the programming forum, so I guess you're looking for a VBA solution. It seems to me you want to write a Worksheet_Change subroutine, one that already knows what range you want to check. Every time you change something on the worksheet that program will run, automatically (because it's named "Worksheet_Change" and because you will have placed it in the code module for that worksheet—I'll show you how, if you don't know already). You'll write the program to look through that range and add up the count of yellow cells, then put that count into the proper place.

How much of that do you already know how to do, and how much of it do you need help with?
Reply With Quote