Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 43
Default Maintenance log

Hi. Got a client who wants to add features to his excel file. Hoping someone here could help.

Got a xls file with 400 sheets, one sheet for each widget. On each widget sheet is an area for people to enter maintenance logs.
Log entries (rows) include a column for the date, description, price, status, an whether it's preventative maintenance Y/N. Need a
couple of things: One, I need to create a summary sheet (400 rows) showing the most recent log entry of each widget. Two, I need
another summary sheet but only showing those widgets those most recent log entry is flagged preventative maintenance.

I asked last week, but didn't get a response. Probably the holiday. Any advice would be greatly appreciated...Dennis

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,327
Default Maintenance log

Hi Dennis

Try putting this code into the ThisWorkbook module, and add a worksheet
names Maintenance into the file.

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Sh.Name < "Maintenance" Then _
Sheets("Maintenance").Cells(Sh.Index, 1).Value = Sh.Name & _
" last changed " & Now
End Sub

Hope this get you started. Best wishes Harald

"Dennis Allen" skrev i melding
...
Hi. Got a client who wants to add features to his excel file. Hoping

someone here could help.

Got a xls file with 400 sheets, one sheet for each widget. On each widget

sheet is an area for people to enter maintenance logs.
Log entries (rows) include a column for the date, description, price,

status, an whether it's preventative maintenance Y/N. Need a
couple of things: One, I need to create a summary sheet (400 rows)

showing the most recent log entry of each widget. Two, I need
another summary sheet but only showing those widgets those most recent log

entry is flagged preventative maintenance.

I asked last week, but didn't get a response. Probably the holiday. Any

advice would be greatly appreciated...Dennis



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VEhicle Maintenance Cass Excel Worksheet Functions 1 May 8th 08 08:55 PM
Vehicle Maintenance Workbook noah Excel Worksheet Functions 1 March 23rd 07 12:02 AM
Vehicle Maintenance Workbook noah Excel Worksheet Functions 0 March 22nd 07 09:11 PM
Does anyone have a building maintenance spreadsheet? curlyque Excel Discussion (Misc queries) 1 July 23rd 05 05:41 PM
vehicle fleet maintenance diggy Excel Worksheet Functions 3 May 15th 05 05:29 PM


All times are GMT +1. The time now is 12:10 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"