Excel Spreadsheet for vehicle maintenance

Phildux

Board Regular
Joined
Apr 12, 2005
Messages
61
hello i would like to make up an excel spreadshheet for our vehicle maintenance. some are are inspected at 6 weeks and others are 8 weeks. i would like ecxel to high light the due dates 7 days before the inspection dates are due is this possible? also to cindiser are test dates ect any help would be greatly appreciated
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Say you have last inspection date in A2 and B2 says either "6 weeks" or "8 weeks" then in C2 this formula

=A2+LEFT(B2)*7

will give you the next inspection date

If you select C2 and use Format > Conditional Formatting

"Formula is" and set to

=C2-TODAY()<8

and select your desired format

This will highlight C2 if it's 7 days or less away
 
Upvote 0
sound ok but these vehicle have approx 8 inspections per year at 6 weekly inintervals on a spreadsheet would we be able to show all service intervals for all vehicles and still show which ones are due
 
Upvote 0
Your best bet might be to have the inspection records for all your vehicles on one sheet.

One row per vehicle with the date of each inspection entered in the next available column.

On another sheet you can show each vehicle again and have a column which will automatically pick up the date of the last inspection for each vehicle and another column which will show the due date for the next inspection.

In that way you can have one column for all the due dates and format it so that those due in the next week are highlighted.

Once an inspection is done the date is entered on your first sheet and the due date will update automatically.

Does that sound feasible - I could post an example this evening?
 
Upvote 0
sound just perfect please please could you post an example.
many many thanks for all your help
 
Upvote 0
I created a workbook with two sheets - the first is Service History
garage.xls
ABCDE
1Vehicleinspection 1inspection 2inspection 3inspection 4
2
3ZX34224 Dec 0411 Feb 05
4sf253603 Jan 0513 Feb 0527 Mar 05
5gd763508 Dec 0412 Feb 0508 Apr 05
6er263501 Apr 05
7erd34202 Oct 0401 Jan 0520 Feb 05
8wsq5913 Dec 0402 Feb 0531 Mar 05
9asg653
10ewp12416 Feb 0531 Mar 05
11
Service History



In A3

=Master!A3

and copied down column

This just picks up vehicle ids from Master sheet - I presume you might use registrations

Other entries should be self-explanatory - dates for each inspection for each vehicle. Dates can be in any format you want as long as excel recognises them as dates

Next worksheet is Master
garage.xls
ABCDE
1Vehicleinspection periodlast inspectionnext inspection due
2
3ZX3428 weeks11 Feb 0508 Apr 05
4sf25366 weeks27 Mar 0508 May 05
5gd76358 weeks08 Apr 0503 Jun 05
6er26358 weeks01 Apr 0527 May 05
7erd3428 weeks20 Feb 0517 Apr 05
8wsq596 weeks31 Mar 0512 May 05
9asg6538 weeksnone 
10ewp1248 weeks31 Mar 0526 May 05
11
Master



Vehicle IDs and inspection periods in columns A and B

In C3 and copied down column

=IF('Service History'!B3="","none",LOOKUP(9.99999999999999E+307,'Service History'!3:3))

which shows the last inspection for each vehicle (or "none" if there are none)
as shown on "Service History" sheet

In D3 and copied down column

=IF(C3="none","",C3+LEFT(B3)*7)

which shows the date of the next inspection (or is blank if there have been no inspections for that vehicle) based on the number of weeks in column B.

You can conditionally format this column to highlight inspections due in the next week

Select column D

Use Format > Conditional Formatting

Use "Formula Is"

=AND(D1<>"",D1-TODAY()<7)

and select desired formatting

If you wished you could add additional conditional formatting to highlight, for instance, if the inspection date has passed(!) or if the inspection due date is less than 2 days away

Hope this helps :cool:
 
Upvote 0
Hi

I'm also looking for an excel spreadsheet for vehicle maintenance but none of the hyper-links work.

Any help would be appreciated!!
 
Upvote 0
Barry - this looks almost like what I need. I'm trying to track the new service requirement by the number of miles that has passed. I have three different things I need p one every 100,000 miles, one every 5,000 miles and one every 2,500 miles. I'm new to this site so hope it's okay to reply to this thread for this question. Any help you could give would be appreciated. Also - will the formulas from here continue to work if I copy and paste them into a spreadsheet?
 
Upvote 0

Forum statistics

Threads
1,214,528
Messages
6,120,065
Members
448,942
Latest member
sharmarick

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