lockarde
Board Regular
- Joined
- Oct 23, 2016
- Messages
- 77
Good afternoon all,
I have a workbook that has sheets for each month and tracks job requests, and the progress of said jobs. Every month, I copy the previous sheet, and update the sheet name to reflect the new month (format i.e "2.1 - 2.29", "3.1 - 3.31"). I've attached the XL2BB data for the information I'd like replicated, and updated depending on the month:
The columns are large to accomdate the "notes" text I added, so here is a screen shot of what it looks like regularly:
As you can see there are counters at the top of each sheet that show total job requests, and then a counter that tracks "completed" requests. This is done by checking for a date in the "completed" column. Ideally, I would like this feature to check for incomplete jobs, and copy over the job details into the new sheet, only if the job is still incomplete at the time the new sheet is created. I'm not sure what the best way to initiate this feature is - maybe a button that just lives in the upper corner of each sheet? This is a little beyond me, and any help is greatly appreciated - you guys are rock stars imo!
Note: The cell with "Updated on" is generated on each save, so that doesn't need to be included in this feature
I have a workbook that has sheets for each month and tracks job requests, and the progress of said jobs. Every month, I copy the previous sheet, and update the sheet name to reflect the new month (format i.e "2.1 - 2.29", "3.1 - 3.31"). I've attached the XL2BB data for the information I'd like replicated, and updated depending on the month:
Daily Engineering Reporting.xlsm | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | |||
1 | Engineering Request Designs | Total Engineering requests Sheet1: | 2 | TOTAL WORKDAYS: | 22 | Completed Engineering requests Sheet1: | 0/2 | |||||||||||||||
2 | Updated on: | 2/28/2020 | 1:15 PM | |||||||||||||||||||
3 | Item(s) | Location | Employee | Job ID | Company | Job Value | Net Price | Est Hours | Act Hours | Request Date | Comp Date | L | W | H | Qty. | Style | Mil Spec? | Prod Job? | Concept? | Design/BOM? | ||
4 | Item 1 | |||||||||||||||||||||
5 | Notes: | Standard request, one note with basic job details. Job completed with no updates/change orders required. Completeion date gets filled in and counters at top track | ||||||||||||||||||||
6 | ||||||||||||||||||||||
7 | Item(s) | Location | Employee | Job ID | Company | Job Value | Crate Price | Est Hours | Act Hours | Request Date | Comp Date | L | W | H | Qty. | Crate Style | Mil Spec? | Prod Job? | Concept? | Design/BOM? | ||
8 | Item 1 | |||||||||||||||||||||
9 | Notes: | Initally starts as standard request | ||||||||||||||||||||
10 | Notes: | As job progress, notes possibly added detailing communication with customer | ||||||||||||||||||||
11 | Notes: | Last note on a job such as this states current "status" of job. i.e "Customer requested changes - conference call scheduled 3/2/20" | ||||||||||||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
F1 | F1 | ="Total Engineering requests " & MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255) & ": " |
I1 | I1 | = COUNTIF(A:A,A4) |
M1 | M1 | =NETWORKDAYS(V8,EOMONTH(V8,0)) |
P1 | P1 | ="Completed Engineering requests " & MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255) & ": " |
T1 | T1 | =COUNT($K:$K)&"/"&I1 |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
T1 | Expression | =COUNT($K:$K)=$I$1 | text | NO |
T1 | Expression | =COUNT($K:$K)<$I$1 | text | NO |
The columns are large to accomdate the "notes" text I added, so here is a screen shot of what it looks like regularly:
As you can see there are counters at the top of each sheet that show total job requests, and then a counter that tracks "completed" requests. This is done by checking for a date in the "completed" column. Ideally, I would like this feature to check for incomplete jobs, and copy over the job details into the new sheet, only if the job is still incomplete at the time the new sheet is created. I'm not sure what the best way to initiate this feature is - maybe a button that just lives in the upper corner of each sheet? This is a little beyond me, and any help is greatly appreciated - you guys are rock stars imo!
Note: The cell with "Updated on" is generated on each save, so that doesn't need to be included in this feature