Status Light Excel 2010

JWOOD1650

New Member
Joined
Feb 8, 2013
Messages
2
I am trying to figure out how to make status indicator for my excel document. In Column "B" I would like a red, yellow, or green dot to appear if they meet the following criteria:

Green: F - J filled in
Yellow: 3 out of the five columns are filled in
Red: None of the columns are filled in.

Would anyone be able to help me out with this?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
I am trying to figure out how to make status indicator for my excel document. In Column "B" I would like a red, yellow, or green dot to appear if they meet the following criteria:

Green: F - J filled in
Yellow: 3 out of the five columns are filled in
Red: None of the columns are filled in.

Would anyone be able to help me out with this?
You can use conditional formatting for this. This will get you started:
1) In column B select all the cells you want to contain the dots.
2) Enter =CHAR(108) and press ctrl + enter keys
3) set font to Wingdings (you should now have dots in all the selected B cells).
4) Use the following conditional formatting formulas to set dot colors:

=COUNTA($F2:$J2)=5 SET FONT TO GREEN
=COUNTA($F2:$J2)=3 SET FONT TO YELLOW
=COUNTA($F2:$J2)=0 SET FONT TO RED
 
Upvote 0

Forum statistics

Threads
1,215,679
Messages
6,126,180
Members
449,296
Latest member
tinneytwin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top