Highlighting dates

Zycho

New Member
Joined
Jul 8, 2018
Messages
10
Hi! Question.. I have got store list on B3:B7, dates when the vehicle changes for the store on D3:D7, vehicle registrations drop down list on F3:F7 and when the next change is due required on H3:H7.. now what I want to do is if the same vehicle is used for the same store 4 days in a row to be highlighted red in the next change due row and no change at all if no vehichle is selected. I can't work it out how to do that as I'm pretty new at doing all that on excel. Thanks in advance!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Its based on current date, is there 4 vehicles & stores matched in the last 4 days?

It's working on this sheet;

https://docs.google.com/spreadsheets/d/1jZowGfLklOw1lx4kjhBA6Qrd9P6l_f3JBA_DSi8YJjI/edit?usp=sharing

This is really similar to what I need.
But I don't want to be adding same store every time I use it few days in a row.
What I want is just those 5 stores to be there and I want to manually change the dates everyday if I use the same vehicle for the same store.
To simplify that, I want change due column to go red if I haven't changed the same vehicle for the same store 4 days in a row.
Thanks a lot for that, appreciate it!
 
Upvote 0
Ok we're getting close.

So all the stores column will be fixed, and you will change the dates manually.

For example if the same rego at any store becomes 4 days old, then the change due column goes red.
 
Upvote 0
Ok we're getting close.

So all the stores column will be fixed, and you will change the dates manually.

For example if the same rego at any store becomes 4 days old, then the change due column goes red.

Yes this is exactly what I need
 
Upvote 0
Zycho,


Highlight the H Column

Conditional Format/Formula where true/Format Red

Code:
=AND(ISNUMBER($D1),$D1<=TODAY()-4)

In the CF rules manager "Applies to" should read;

Code:
=$H:$H
 
Last edited:
Upvote 0
Zycho,


Highlight the H Column

Conditional Format/Formula where true/Format Red

Code:
=AND(ISNUMBER($D1),$D1<=TODAY()-4)

In the CF rules manager "Applies to" should read;

Code:
=$H:$H

That's it! Thank you so much for that sir. :biggrin: Wish I knew as much as you do. Still learning though!
Have a fantastic day!
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,267
Members
449,075
Latest member
staticfluids

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