Newbie to 2010 excel need help!

cmlloveless

New Member
Joined
Jun 29, 2011
Messages
24
I need to create some conitional formats, but don't know how. I am used to excel 2007 edition (wasn't a pro by any means) and dont have a clue how to do things on 2010.

I have a spread sheat that tracks annual training and competency for the staff at my work. There is training that is due annually and some due every 2 years. What I am looking to have happen is that I want the cell to turn yellow 30 days before the due date and red when it is expired. Any idea how to set this up? What I will have is the date that the current training was done on.

I.E. Bob did his training on 04/25/2010 so on 03/25/2011 the cell would turn yellow and 04/26/2011 the cell would turn red unless I put in a new date.

Any help would be appreciated!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
I was under the impression that Conditional Formatting under 2010 was almost identical to Excel 2007, except for approx 3 new features ( reference another sheet, improved data bars, and improved icon lists ).

Unless I've been misled of course ... I do not have Excel 2010 myself yet, so I can't imagine what you are getting stuck on.
 
Upvote 0
Is it the actual formulae that you're struggling with?

If you have a date in A1 and you want to test if it's less than 30 days away, the formula would be:-
Code:
=and[COLOR=red][B]([/B][/COLOR]a1>0,a1< [COLOR=blue][B]([/B][/COLOR]today()+30[B][COLOR=blue])[/COLOR][COLOR=red])[/COLOR][/B]

To test if the date has passed:-
Code:
=and[COLOR=red][B]([/B][/COLOR]a1>0,a1< today()<TODAY()[B][COLOR=red])[/COLOR][/B]

(I inserted spaces after the < symbols to stop the forum software throwing a wobbly: you would leave them out.)
 
Last edited:
Upvote 0
Well when I did it on 2007 I used a formula that was similar to this:

=IF(today+365.... I don't remember it exactly.
 
Upvote 0
Is it the actual formulae that you're struggling with?

If you have a date in A1 and you want to test if it's less than 30 days away, the formula would be:-
Code:
=and[COLOR=red][B]([/B][/COLOR]a1>0,a1< [COLOR=blue][B]([/B][/COLOR]today()+30[B][COLOR=blue])[/COLOR][COLOR=red])[/COLOR][/B]

To test if the date has passed:-
Code:
=and[COLOR=red][B]([/B][/COLOR]a1>0,a1< today()<TODAY()[B][COLOR=red])[/COLOR][/B]

(I inserted spaces after the < symbols to stop the forum software throwing a wobbly: you would leave them out.)

I tried this formula and it does not give me what I want. It is showing me that that it is within 30 days of the date I put in. What I need is a formula the shows me yellow if it is 335 days past the date I have entered and then red if it 365 days past the date I have entered.

Any ideas on a formula for that?
 
Upvote 0
Code:
=and(a1>0,a1+335<today())
Test with a range of dates to verify it's correct.
 
Upvote 0
Ok so I lied, I guess I'm using 2007 excel and the last one my work has was 2003. So it is very different to me.

=and(a1>0,a1+335)<TODAY())< pre>

So if I type in this formula under conditional formating (assuming I change the "a1" to the correct cell/cells It will do what Im wanting it to?
 
Upvote 0
Oops, **** those greater than symbols!

It should be:-
Code:
=AND(A1>0,A1+335< TODAY())
or:-
Code:
=AND(A1>0,A1< TODAY()-335)
whichever you find easiest to read.

Yes, change A1 to the cell you want to test.
 
Upvote 0
Awsome that works! Now how do I include mutliple cells within one formula?

I.E. I want that formula to work on the entire R columb or the entire 4th row?
 
Upvote 0
Copy the cell and Paste Special > Formats or use the Format Painter.
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,292
Members
452,902
Latest member
Knuddeluff

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