Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VEhicle Maintenance | Excel Worksheet Functions | |||
Vehicle Maintenance Workbook | Excel Worksheet Functions | |||
Vehicle Maintenance Workbook | Excel Worksheet Functions | |||
Does anyone have a building maintenance spreadsheet? | Excel Discussion (Misc queries) | |||
vehicle fleet maintenance | Excel Worksheet Functions |