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.
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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, 6 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
-
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
10 hours, 18 minutes ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
6 hours, 2 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
8 hours, 53 minutes ago -
Discover the Best AI Tools for Everything
by
Alex5723
9 hours, 1 minute ago -
Edge Seems To Be Gaining Weight
by
bbearren
9 hours, 44 minutes ago -
Rufus is available from the MSFT Store
by
PL1
7 hours, 13 minutes ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
1 day, 10 hours ago -
KB5061768 update for Intel vPro processor
by
drmark
16 hours, 29 minutes ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
12 hours, 40 minutes ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
1 day, 5 hours ago -
Office gets current release
by
Susan Bradley
1 day, 8 hours ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
2 days, 22 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
2 days, 7 hours ago -
Stop the OneDrive defaults
by
CWBillow
2 days, 23 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
3 days, 9 hours ago -
X Suspends Encrypted DMs
by
Alex5723
3 days, 11 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
3 days, 11 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
3 days, 12 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
3 days, 13 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
3 days, 1 hour ago -
Enabling Secureboot
by
ITguy
3 days, 8 hours ago -
Windows hosting exposes additional bugs
by
Susan Bradley
3 days, 20 hours ago -
No more rounded corners??
by
CWBillow
3 days, 16 hours ago -
Android 15 and IPV6
by
Win7and10
3 days, 6 hours ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
4 days, 9 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
4 days, 11 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
4 days, 6 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
4 days, 19 hours ago -
May preview updates
by
Susan Bradley
4 days, 6 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
3 days, 22 hours 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 |
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.