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
-
Office gets current release
by
Susan Bradley
1 hour, 9 minutes ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
6 hours, 32 minutes ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
3 hours, 16 minutes ago -
Stop the OneDrive defaults
by
CWBillow
7 hours, 21 minutes ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
17 hours, 17 minutes ago -
X Suspends Encrypted DMs
by
Alex5723
19 hours, 28 minutes ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
19 hours, 46 minutes ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
20 hours, 23 minutes ago -
OpenAI model sabotages shutdown code
by
Cybertooth
21 hours, 1 minute ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
9 hours, 10 minutes ago -
Enabling Secureboot
by
ITguy
16 hours, 10 minutes ago -
Windows hosting exposes additional bugs
by
Susan Bradley
1 day, 4 hours ago -
No more rounded corners??
by
CWBillow
1 day ago -
Android 15 and IPV6
by
Win7and10
14 hours, 28 minutes ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
1 day, 17 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
1 day, 19 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
1 day, 14 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
2 days, 3 hours ago -
May preview updates
by
Susan Bradley
1 day, 14 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
1 day, 6 hours ago -
Just got this pop-up page while browsing
by
Alex5723
1 day, 19 hours ago -
KB5058379 / KB 5061768 Failures
by
crown
1 day, 16 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
18 hours, 44 minutes ago -
At last – installation of 24H2
by
Botswana12
2 days, 18 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
15 hours, 30 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
3 days, 7 hours ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
1 day, 5 hours ago -
Limited account permission error related to Windows Update
by
gtd12345
3 days, 20 hours ago -
Another test post
by
gtd12345
3 days, 20 hours ago -
Connect to someone else computer
by
wadeer
3 days, 15 hours ago
Recent blog posts
Key Links
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.