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
-
Windows Update orchestration platform to update all software
by
Alex5723
2 hours, 31 minutes ago -
May preview updates
by
Susan Bradley
4 hours, 9 minutes ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
4 hours, 16 minutes ago -
Just got this pop-up page while browsing
by
Alex5723
2 hours, 12 minutes ago -
KB5058379 / KB 5061768 Failures
by
crown
1 hour, 22 minutes ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
17 hours, 18 minutes ago -
At last – installation of 24H2
by
Botswana12
18 hours, 3 minutes ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
15 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
1 day, 6 hours ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
23 hours, 34 minutes ago -
Limited account permission error related to Windows Update
by
gtd12345
1 day, 19 hours ago -
Another test post
by
gtd12345
1 day, 19 hours ago -
Connect to someone else computer
by
wadeer
1 day, 14 hours ago -
Limit on User names?
by
CWBillow
1 day, 17 hours ago -
Choose the right apps for traveling
by
Peter Deegan
1 day, 7 hours ago -
BitLocker rears its head
by
Susan Bradley
15 hours, 15 minutes ago -
Who are you? (2025 edition)
by
Will Fastie
14 hours, 12 minutes ago -
AskWoody at the computer museum, round two
by
Will Fastie
1 day, 9 hours ago -
A smarter, simpler Firefox address bar
by
Alex5723
2 days, 6 hours ago -
Woody
by
Scott
2 days, 15 hours ago -
24H2 has suppressed my favoured spider
by
Davidhs
14 hours, 52 minutes ago -
GeForce RTX 5060 in certain motherboards could experience blank screens
by
Alex5723
3 days, 5 hours ago -
MS Office 365 Home on MAC
by
MickIver
2 days, 23 hours ago -
Google’s Veo3 video generator. Before you ask: yes, everything is AI here
by
Alex5723
3 days, 19 hours ago -
Flash Drive Eject Error for Still In Use
by
J9438
14 hours, 37 minutes ago -
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
4 days, 14 hours ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
4 days, 14 hours ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
3 days, 18 hours ago -
Migrate off MS365 to Apple Products
by
dmt_3904
3 days, 19 hours ago -
Login screen icon
by
CWBillow
3 days, 9 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.