-
WSyoyophil
AskWoody LoungerWhat am I missing? Your example is working fine the way it is. Are you trying to do this using VBA?
yoyoPHIL
-
WSyoyophil
AskWoody LoungerHey Buckshot;
I read your post a few days back and was intrigued with trying to figure out a solution. I like to think of Woody’s Lounge as a place to get the best “living brain teasers”. I admit that I have only recently starting learning VBA for Excel so most of my work is with formulas and the attached file only uses macros created by the macro recorder.
The spreadsheet I created stores the information of the donatees and then a pull-down box (name) selects the person and all pertinent information. This includes all donations, dates, special gifts, totals, etc..
The Data Entry button just links to the start of the data entry area (R69). Scroll down to enter all new data. The Re-Sort button is to use after you enter additional information. It will re-sort the data and look for any new names which will then be added to the pull down list.
The print area is set to only print one page which is the information for each person. There is room for 52 entries for the year. C8 counts how many donations are given and will turn red if more than 52 are found. Most of the formulas are array formulas so any editing will need to be finished with ctrl – shift – enter. I originally tried to set-up the sheet exactly like you posted but found problems with the layout so I did what I thought would be the most appropriate.
I don’t know if this is what you are looking for or if this file can be usefull but I hope it helps. If you wish more information on the file or assistance adjusting it, let me know.yoyoPHIL
-
WSyoyophil
AskWoody LoungerHey Buckshot;
I read your post a few days back and was intrigued with trying to figure out a solution. I like to think of Woody’s Lounge as a place to get the best “living brain teasers”. I admit that I have only recently starting learning VBA for Excel so most of my work is with formulas and the attached file only uses macros created by the macro recorder.
The spreadsheet I created stores the information of the donatees and then a pull-down box (name) selects the person and all pertinent information. This includes all donations, dates, special gifts, totals, etc..
The Data Entry button just links to the start of the data entry area (R69). Scroll down to enter all new data. The Re-Sort button is to use after you enter additional information. It will re-sort the data and look for any new names which will then be added to the pull down list.
The print area is set to only print one page which is the information for each person. There is room for 52 entries for the year. C8 counts how many donations are given and will turn red if more than 52 are found. Most of the formulas are array formulas so any editing will need to be finished with ctrl – shift – enter. I originally tried to set-up the sheet exactly like you posted but found problems with the layout so I did what I thought would be the most appropriate.
I don’t know if this is what you are looking for or if this file can be usefull but I hope it helps. If you wish more information on the file or assistance adjusting it, let me know.yoyoPHIL
-
WSyoyophil
AskWoody LoungerHows this?
Technically it is not looking for the asterix (*) but instead it counts all the entries for the specific date and then subtracts the total jobs done by the techs as calculated by your sumproduct formula.
Let me know if this is what you need.
yoyoPHIL
-
WSyoyophil
AskWoody LoungerHows this?
Technically it is not looking for the asterix (*) but instead it counts all the entries for the specific date and then subtracts the total jobs done by the techs as calculated by your sumproduct formula.
Let me know if this is what you need.
yoyoPHIL
-
WSyoyophil
AskWoody LoungerI assume that your techs manually enter there name and the asterix (*) when there is a problem with the serial number. If this is not the case let me know how you want it to work. Your explantion didn’t explain it clearly.
I added conditional formatting that changes the serial number cell to a different color and the font to red when the tech name has a * at the end.
I also used your formulas on the summary sheet to count the number of names with *.Let me know if this is what you are looking for.
yoyoPHIL
-
WSyoyophil
AskWoody LoungerI assume that your techs manually enter there name and the asterix (*) when there is a problem with the serial number. If this is not the case let me know how you want it to work. Your explantion didn’t explain it clearly.
I added conditional formatting that changes the serial number cell to a different color and the font to red when the tech name has a * at the end.
I also used your formulas on the summary sheet to count the number of names with *.Let me know if this is what you are looking for.
yoyoPHIL
-
WSyoyophil
AskWoody LoungerAlex;
Here is an adjustment to your spreadsheet. I combined your formulas together and removed the redundant and uneeded columns. In G4 I placed
=IF(ISERROR(E4)=TRUE,SUMIF(‘#VALUE’!A:A,Sheet1!A4,’#VALUE’!E:E),E4)
and copied it down. Depending on how you get the results which are in column E (Route 1) you might be able to do this all in one column.
yoyoPHIL
Actually I don’t believe you need to have the =TRUE statement. Remove it if you want.
-
WSyoyophil
AskWoody LoungerAlex;
Here is an adjustment to your spreadsheet. I combined your formulas together and removed the redundant and uneeded columns. In G4 I placed
=IF(ISERROR(E4)=TRUE,SUMIF(‘#VALUE’!A:A,Sheet1!A4,’#VALUE’!E:E),E4)
and copied it down. Depending on how you get the results which are in column E (Route 1) you might be able to do this all in one column.
yoyoPHIL
Actually I don’t believe you need to have the =TRUE statement. Remove it if you want.
-
WSyoyophil
AskWoody LoungerAlex
Here is a stab at it. Sheet 1 has a formula in the E column which tries to run a simple calculation. Because some of the cell entries are text the result of the formula is #VALUE. I created this to mimic what you say is happening on your sheet. On the sheet called #Value the results from Sheet 1, column E are pulled into column A. In column B is a formula that looks at the results in A and if it does not find an error it keeps the result you have. Where it finds an error it places “sumif formula here”. Because I don’t understand your sumif formula, but you say it works, insert it into the formula in place of the “sumif formula here” statement adjusting for sheet names and ranges.
Hope this helps.
yoyoPHIL
-
WSyoyophil
AskWoody LoungerAlex
Here is a stab at it. Sheet 1 has a formula in the E column which tries to run a simple calculation. Because some of the cell entries are text the result of the formula is #VALUE. I created this to mimic what you say is happening on your sheet. On the sheet called #Value the results from Sheet 1, column E are pulled into column A. In column B is a formula that looks at the results in A and if it does not find an error it keeps the result you have. Where it finds an error it places “sumif formula here”. Because I don’t understand your sumif formula, but you say it works, insert it into the formula in place of the “sumif formula here” statement adjusting for sheet names and ranges.
Hope this helps.
yoyoPHIL
-
WSyoyophil
AskWoody Loungerccj
When you say you have the numbers already in the fields do you mean JUST the numbers or do you have any apostophes or commas already entered. If your not sure, select a cell and look in your formula bar.
If you have just the number, say 12345 in cell A1, you should be able to do exactly what Cindi stated and the resulting formatting ‘#####’, should make your entry appear as ‘12345’,
Any apostrophes or commas already entered will screw up the formatting.yoyoPHIL
-
WSyoyophil
AskWoody Loungerccj
When you say you have the numbers already in the fields do you mean JUST the numbers or do you have any apostophes or commas already entered. If your not sure, select a cell and look in your formula bar.
If you have just the number, say 12345 in cell A1, you should be able to do exactly what Cindi stated and the resulting formatting ‘#####’, should make your entry appear as ‘12345’,
Any apostrophes or commas already entered will screw up the formatting.yoyoPHIL
-
WSyoyophil
AskWoody LoungerIts a little hard to follow your set-up from the description. Could you send a smaller version of the file with any private information removed. It appears that it would be a simple formula but without an example I am having a difficult time picturing what you need.
yoyoPHIL
-
WSyoyophil
AskWoody LoungerIts a little hard to follow your set-up from the description. Could you send a smaller version of the file with any private information removed. It appears that it would be a simple formula but without an example I am having a difficult time picturing what you need.
yoyoPHIL
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

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
-
Outlook new and edge do not load
by
cHJARLES a pECKHAM
2 hours, 42 minutes ago -
Problem using exfat drives for backup
by
Danmc
3 hours, 1 minute ago -
I hate that AI is on every computer we have!
by
1bumthumb
4 hours, 19 minutes ago -
Change Info in the Settings window
by
CWBillow
9 hours, 42 minutes ago -
Attestation readiness verifier for TPM reliability
by
Alex5723
16 hours, 5 minutes ago -
Windows Update says that “some settings are managed b your organization”
by
Ed Willers
1 hour, 50 minutes ago -
Use of Gmail rejected.
by
CBFPD-Chief115
2 hours, 30 minutes ago -
WuMgr operational questions
by
Tex265
3 hours, 9 minutes ago -
Beijing’s unprecedented half-marathon: Humans vs. humanoids!
by
Alex5723
1 day, 7 hours ago -
New Phishing Campaign Targeted at Mac Users
by
Alex5723
7 hours, 53 minutes ago -
Backing up Google Calendar
by
CWBillow
1 day, 13 hours ago -
Windows 11 Insider Preview build 27818 released to Canary
by
joep517
2 days, 2 hours ago -
File Naming Conventions (including Folders)
by
Magic66
1 day, 1 hour ago -
Windows 11 Insider Preview Build 26100.3613 (24H2) released to Release Preview
by
joep517
2 days, 9 hours ago -
Microsoft sends emails to Windows 10 users about EOS
by
Alex5723
1 day, 20 hours ago -
Outlook 2024 importing Calendar and Contacts – FAILURE
by
Kathy Stevens
1 day, 2 hours ago -
Adding Microsoft Account.
by
DaveBRenn
2 days, 11 hours ago -
Windows 11 Insider Preview build 26120.3576 released to DEV and BETA
by
joep517
3 days, 10 hours ago -
Windows 11 Insider Preview Build 22635.5090 (23H2) released to BETA
by
joep517
3 days, 11 hours ago -
Windows 11 won’t boot
by
goducks25
1 day, 3 hours ago -
Choosing virtual machine product for Windows on Mac
by
peterb
3 days, 1 hour ago -
Rest in Peace
by
Roy Lasris
4 days, 5 hours ago -
CISA : Install Windows March 2025 Updates until April 1 or shut down PC.
by
Alex5723
1 day, 3 hours ago -
Google proposes users with incompatible Win 11 PCs to migrate to ChromeOS Flex
by
Alex5723
4 days, 6 hours ago -
Drivers for Epson Perfection V600 Photo – scanner
by
Bookman
21 hours, 29 minutes ago -
Long Time Member
by
jackpet
4 days, 8 hours ago -
Woody Leonhard (1951–2025)
by
Will Fastie
2 hours, 29 minutes ago -
What I learned from Woody Leonhard
by
B. Livingston
4 days, 2 hours ago -
Windows Settings today
by
Simon Bisson
4 hours, 20 minutes ago -
Mail Merge magic in Microsoft Word
by
Peter Deegan
1 day, 14 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.