My first Excel spreadsheet has 1 row of dates & 1 column of names. My second spreadsheet is my information spreadsheet with serial numbers and also a column of dates and another column of names. I would like to be able to write some code in my first spreadsheet that would examine the name and the date of the second spreadsheet and give me the number of serial numbers worked on by any one person daily. I have attached an example.
Any suggestions would be greatly appreciated. I have been banging my head for quite a while.
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
excel problem (2002)
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » excel problem (2002)
- This topic has 14 replies, 4 voices, and was last updated 21 years, 5 months ago.
AuthorTopicWSshano
AskWoody LoungerNovember 20, 2003 at 5:31 am #396812Viewing 1 reply threadAuthorReplies-
WSpieterse
AskWoody Lounger -
WSshano
AskWoody Lounger -
WSshano
AskWoody Lounger -
WSshano
AskWoody Lounger -
WSAladin Akyurek
AskWoody LoungerNovember 23, 2003 at 12:52 pm #747983A different setup would allow for faster processing. It consists of restricting the required SumProduct formula to relevant subranges.
The prerequisite is that the data on Sheet2 be sorted on the Date column. Assuming that the sorting is done:Switch to Sheet1.
Insert a row before the processing area on this sheet.
In C1 enter & copy across to the column of the last date plus 1:
=MATCH(C2,Sheet2!$A$11:INDEX(Sheet2!$A:$A,MATCH(9.99999999999999E+307,Sheet2!$A:$A)),0)
In C3 enter & copy across then down:
=IF(ISNA(C$1),””,SUMPRODUCT(–(OFFSET(Sheet2!$F$11,C$1-1,0,IF(ISNA(D$1),1,D$1-C$1),1)=$A3),–(OFFSET(Sheet2!$B$11,C$1-1,0,IF(ISNA(D$1),1,D$1-C$1),1)””)))
BTW, you could also use the following formulas…
B3 on Sheet1:
=COUNTIF(Sheet2!$F$11:INDEX(Sheet2!F:F,MATCH(REPT(“z”,255),Sheet2!F:F)),A3)
F1 on Sheet2:
=COUNTA(B11:INDEX(B:B,MATCH(REPT(“z”,255),B:
))
See the attachment.
-
WSAladin Akyurek
AskWoody LoungerNovember 23, 2003 at 12:52 pm #747984A different setup would allow for faster processing. It consists of restricting the required SumProduct formula to relevant subranges.
The prerequisite is that the data on Sheet2 be sorted on the Date column. Assuming that the sorting is done:Switch to Sheet1.
Insert a row before the processing area on this sheet.
In C1 enter & copy across to the column of the last date plus 1:
=MATCH(C2,Sheet2!$A$11:INDEX(Sheet2!$A:$A,MATCH(9.99999999999999E+307,Sheet2!$A:$A)),0)
In C3 enter & copy across then down:
=IF(ISNA(C$1),””,SUMPRODUCT(–(OFFSET(Sheet2!$F$11,C$1-1,0,IF(ISNA(D$1),1,D$1-C$1),1)=$A3),–(OFFSET(Sheet2!$B$11,C$1-1,0,IF(ISNA(D$1),1,D$1-C$1),1)””)))
BTW, you could also use the following formulas…
B3 on Sheet1:
=COUNTIF(Sheet2!$F$11:INDEX(Sheet2!F:F,MATCH(REPT(“z”,255),Sheet2!F:F)),A3)
F1 on Sheet2:
=COUNTA(B11:INDEX(B:B,MATCH(REPT(“z”,255),B:
))
See the attachment.
-
WSsdckapr
AskWoody LoungerNovember 27, 2003 at 10:32 am #746808(Edited by sdckapr on 27-Nov-03 06:32. Correct syntax error)
If you add this to the workbook object:
Private Sub Workbook_Open() With Application .Calculation = xlCalculationManual .OnTime Now + TimeValue("01:00:00"), "CalcAll" End With End Sub
When you open the file it will turn calculation to manual and tell excel to run the macro “CalcAll” in 1 hour
Add this to a module:
Sub CalcAll() With Application .Calculate .OnTime Now + TimeValue("01:00:00"), "CalcAll" End With End Sub
When the hour is up it will calculate and then tell excel to calc again in an hour, etc, etc.
Things to be aware of (these are true of XL97, not sure how different XL2000 is and if you have other options):
Manual calculation is not workbook dependent. No other workbooks/worksheets will calculate during this hour. When the hour comes all will be calculated.
If you hit to calculate any workbook/sheet when this “slow” one is open, it will also calculate that workbook too.Steve
-
WSshano
AskWoody Lounger -
WSsdckapr
AskWoody LoungerNovember 27, 2003 at 10:35 am #749853I do notice that you have the “workbook open” macro in a worksheet object. It belongs in the object named “thisworkbook”.
Also I made a mistake in one of the lines, it should be:
.Calculation = xlCalculationManual
I apologize for the inconvenience. I have corrected it in the original post. Let us know if this fixes the problem.
Steve
-
WSsdckapr
AskWoody LoungerNovember 27, 2003 at 10:35 am #749854I do notice that you have the “workbook open” macro in a worksheet object. It belongs in the object named “thisworkbook”.
Also I made a mistake in one of the lines, it should be:
.Calculation = xlCalculationManual
I apologize for the inconvenience. I have corrected it in the original post. Let us know if this fixes the problem.
Steve
-
-
WSshano
AskWoody Lounger
-
-
WSsdckapr
AskWoody LoungerNovember 27, 2003 at 10:32 am #746809(Edited by sdckapr on 27-Nov-03 06:32. Correct syntax error)
If you add this to the workbook object:
Private Sub Workbook_Open() With Application .Calculation = xlCalculationManual .OnTime Now + TimeValue("01:00:00"), "CalcAll" End With End Sub
When you open the file it will turn calculation to manual and tell excel to run the macro “CalcAll” in 1 hour
Add this to a module:
Sub CalcAll() With Application .Calculate .OnTime Now + TimeValue("01:00:00"), "CalcAll" End With End Sub
When the hour is up it will calculate and then tell excel to calc again in an hour, etc, etc.
Things to be aware of (these are true of XL97, not sure how different XL2000 is and if you have other options):
Manual calculation is not workbook dependent. No other workbooks/worksheets will calculate during this hour. When the hour comes all will be calculated.
If you hit to calculate any workbook/sheet when this “slow” one is open, it will also calculate that workbook too.Steve
-
-
WSshano
AskWoody Lounger
-
-
WSpieterse
AskWoody Lounger
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Multiple Partitions?
by
CWBillow
1 hour, 51 minutes ago -
World Passkey Day 2025
by
Alex5723
4 hours, 34 minutes ago -
Add serial device in Windows 11
by
Theodore Dawson
12 hours, 23 minutes ago -
Windows 11 users reportedly losing data due forced BitLocker encryption
by
Alex5723
2 hours, 3 minutes ago -
Cached credentials is not a new bug
by
Susan Bradley
16 hours, 56 minutes ago -
Win11 24H4 Slow!
by
Bob Bible
17 hours, 7 minutes ago -
Microsoft hiking XBox prices starting today due to Trump’s tariffs
by
Alex5723
14 hours, 18 minutes ago -
Asus adds “movement sensor” to their Graphics cards
by
n0ads
19 hours, 17 minutes ago -
‘Minority Report’ coming to NYC
by
Alex5723
15 hours, 37 minutes ago -
Apple notifies new victims of spyware attacks across the world
by
Alex5723
1 day, 3 hours ago -
Tracking content block list GONE in Firefox 138
by
Bob99
1 day, 3 hours ago -
How do I migrate Password Managers
by
Rush2112
11 hours, 13 minutes ago -
Orb : how fast is my Internet connection
by
Alex5723
13 hours, 2 minutes ago -
Solid color background slows Windows 7 login
by
Alex5723
1 day, 15 hours ago -
Windows 11, version 24H2 might not download via Windows Server Updates Services
by
Alex5723
1 day, 14 hours ago -
Security fixes for Firefox
by
Susan Bradley
14 hours, 37 minutes ago -
Notice on termination of services of LG Mobile Phone Software Updates
by
Alex5723
2 days, 2 hours ago -
Update your Apple Devices Wormable Zero-Click Remote Code Execution in AirPlay..
by
Alex5723
2 days, 11 hours ago -
Amazon denies it had plans to be clear about consumer tariff costs
by
Alex5723
2 days, 2 hours ago -
Return of the brain dead FF sidebar
by
EricB
1 day, 13 hours ago -
Windows Settings Managed by your Organization
by
WSDavidO61
16 hours, 41 minutes ago -
Securing Laptop for Trustee Administrattor
by
PeachesP
13 hours, 6 minutes ago -
The local account tax
by
Susan Bradley
1 day, 14 hours ago -
Recall is back with KB5055627(OS Build 26100.3915) Preview
by
Alex5723
3 days ago -
Digital TV Antenna Recommendation
by
Win7and10
2 days, 17 hours ago -
Server 2019 Domain Controllers broken by updates
by
MP Support
3 days, 12 hours ago -
Google won’t remove 3rd party cookies in Chrome as promised
by
Alex5723
3 days, 14 hours ago -
Microsoft Manager Says macOS Is Better Than Windows 11
by
Alex5723
3 days, 17 hours ago -
Outlook (NEW) Getting really Pushy
by
RetiredGeek
2 days, 19 hours ago -
Steps to take before updating to 24H2
by
Susan Bradley
17 hours, 33 minutes ago
Recent blog posts
Key Links
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.