granianm

New Member
Joined
Oct 19, 2017
Messages
2
Hi all, relatively new to excel and definitely to this forum so please be gentle!:LOL:
I have a spreadsheet where I need to track when items need calibrating which is every 6 months. There is a column that records its last calibration date but what I would like is somehow for that column to be highlighted once they are due again, any ideas?

Cheers in advance!
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
OK. Let's say that your dates are in column C. Highlight the column C and select Conditional Formatting>New Rule and then choose Use a formula to determine which cells to format. In the formula box, enter the following:

Code:
=AND($C1<>"",EDATE($C1,6)<=TODAY())

Click on Format... and choose a fill colour for the formatting.

Of course, you'll need to change column "C" to whichever column contains your dates.

WBD
 
Upvote 0
You should end up with something like this:


Book1
C
1Last Calibration Date
219/01/2017
319/02/2017
419/03/2017
519/04/2017
619/05/2017
719/06/2017
819/07/2017
919/08/2017
1019/09/2017
1119/10/2017
1219/11/2017
1319/12/2017
Sheet1


WBD
 
Upvote 0
i refreshed the page and saw no replies

then there was - so ignore

use conditional formatting to change the cell colour
when do you want that column to highlight - when the date is past ?
or a RAG - red , amber green
when its due in a week or 2 weeks

you would use a formula
+
=today() > date( year(Cell with last calibration date ), month(Cell with last calibration date ) + 6 ,day(Cell with last calibration date ))
see we are adding 6 to the months of the last date
and seeing if today() date is still in the future
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,236
Messages
6,123,798
Members
449,127
Latest member
Cyko

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