-
WSLeighW
AskWoody LoungerSorry about the delay in replying but please offer suggestions re the code in the attached book.
-
WSLeighW
AskWoody LoungerThanks Hans – Firstly I meant Name is a heading. It refers to a business name that is extracted from the finance app. There can be about 500 on each extracted sheet and I need to find each so that I can then copy the business name (next cell to right of heading Name )
BTW, I did explore that code but my range is not defined. Sometimes it will be 5000 rows and other times it will be 3000 rows.
I have tried UsedRange but it doesn’t seem to define the range correctly. I couldn’t get it to work with my code.
As a test I did try the following code to see if I was getting closer but it also stops when it has run out of text to find and replace.
Sub FindNext() With Worksheets(1).Range("a1:a5000") Set c = .Find("Name", LookIn:=xlValues) If Not c Is Nothing Then firstAddress = c.Address Do c.Value = "FoundName" Set c = .FindNextยฉ Loop While Not c Is Nothing And c.Address firstAddress End If End With End Sub
At the mercy of the court…
-
WSLeighW
AskWoody LoungerAlan, Chris, Don and Kim – the good news is that it now runs the way it should. While the efforts of everyone who offered their suggestions, recommendations were very much appreciated, it was Hans simple response that nailed it. I had looked at a similar solution very early (nearly two days of Googling, trying code and hairtearing) but I couldn’t get it to work…
|
|
|
– And then it dawned on me, the format of the INI file was critical. Single-stepping the code was coming up with no response for the bit where it had to get the string from the INI. I found out that there has to be no ‘blank’ entries in the Keys otherwise it just goes with a default value (none given in this case). I overcame it with a simple ‘Reserved’ in the blanks and behold, it worked flawlessly.Thanks again all, and to Hans, who seems to always find an answer for me, many thanks. Very much appreciated.
As promised I will put this into a small package and post it here for others to use. That is if they haven’t put a few bits of code together and come up with their own answer.
-
WSLeighW
AskWoody LoungerThanks Kim and Don and Hans
If I can’t get another way to resolve this I might have to resort to invoking Word. But as Hans said, I believe it increases the overhead and I would like to keep it down.
Battling on…
-
WSLeighW
AskWoody LoungerThanks for your input Chris – However I need the INI file to be untouched as it contains data that the users need to use but not modify. I can’t have any chance of the INI being deleted therefore the WritePrivateProfileString function will not not be declared.
You might like to have a look at what I used originally and offer suggestions based on that though (ZIP file in my response to Alan)
-
WSLeighW
AskWoody LoungerHi Alan – I had a look at the vbAccelerator site and tried to work with the CLS file but got error message about the form class not being supported in VBE.
However if anyone can see the way to use the function GetPrivateProfileString to work where I have used GetSetting in my attached example INI and code, I would be immensely grateful.
-
WSLeighW
AskWoody LoungerThanks again Jefferson but the path I am looking at is to have a totally text file of the format of standard INIs without reference to Registry keys.
Not quite sure what is meant by building the data into an array. If it makes it clearer for you I would have an INI file with a structure that includes Sections and Keys (with Keynames) that my Excle VBA code would attempt to get information from using the GetPrivateProfileString function. Some of this data would go into a textbox and other data would populate a listbox dependent on which option button the user clicked on the form.
If I can get the function to work correctly it will perform a similar function (‘scuse the pun) to what the GetSetting function does in importing data from relevant keys in the Registry.
At the moment it is not working but I’ll keep going as I need it to work…
-
WSLeighW
AskWoody LoungerThanks for your input Jefferson. A REG is indeed a file (e.g. MyFile.REG) that is merged into the Registry.
The purpose of the INI (basically a text file) is that it can have a structure of Sections, Keys and strings of information that my VBA code will call from the INI file when a user clicks on individual option buttons in the form. The data then populates text or listboxes for further choices for the user.
A CSV is basically a text file also but I have not seen them used in the same way that I believe I require. I think an INI file is the way I must pursue.
If I am successful with what I am doing presently, I will post it for others to consider because I cannot find any other references to it on the ‘net.
-
WSLeighW
AskWoody LoungerRegretably, despite good advice from Hans, my skills are falling short on this one.
Can someone tell me more about the sort of relationships that should be established for multiple tables to work as I intended?
I.e., the form will be for data input and a query is used to enable the form to be created. Is that clear or make sense? The tables are going to be 7 in number (incl. the main table) and there will be way too many fields required in each to have a single table. The form will be multi-tabbed using the tab control as I have laboured previously with a form that had multiple controls placed one over another and using code to hide or display the relevant control.
Attached is the non-working version where I have played with relationships.
Any assistance to resolve my dilemma will be appreciated.
-
WSLeighW
AskWoody LoungerGood – using a tabbed form was the way I was going to go in view of the large number of fields. It was getting messy using using code to hide various year levels on the original form and a devil when any form field needed a minor adjustment.
Thanks again Hans
-
WSLeighW
AskWoody LoungerThanks for your reply Hans
I had a bit of a play – as you do – and new db attached seems to work.
However, any comments on the relationships would be appreciated.
BTW, it currently only has one extra table but the others will be along the same lines as tblResults.
TIA, Leigh
-
WSLeighW
AskWoody LoungerThanks Hans, again your guidance and code has worked a treat. I do appreciate your assistance.
Have a Heineken on me (PayPal OK?)
-
WSLeighW
AskWoody LoungerI might just take more notice of the written word…
Thanks Hans, we are getting closer but now the age difference which is what I needed for calcs is way out. I am getting a difference of the order of 90+ years.
I thought it might be as simple as taking a bigger value from a small value but it wasn’t. The code that calls the TestAge/TestAgeMonths functions is shown below.
=IIf(IsNull([txtDOB])," ",TestAge(([txtTestDate]-[txtDOB])) & "." & TestAgeMonths(([txtTestDate]-[txtDOB])))
In effect I am trying to get the age at which the testing was done (previously I used system date) but the code is not working correctly.
Any suggestions?
-
WSLeighW
AskWoody LoungerWell it is not a Class module so I assume that it is a standard one.
Function TestAge(varTestDate As Variant) As Integer Dim varTestAge As Variant If IsNull(varTestDate) Then TestAge = 0: Exit Function ' varTestAge = DateDiff("yyyy", varTestDate, Now) varTestAge = DateDiff("yyyy", varTestDate, Forms!Students!txtTestAge) If Date < DateSerial(Year(Forms!Students!txtTestAge), Month(varTestDate), _ Day(varTestDate)) Then varTestAge = varTestAge - 1 End If TestAge = CInt(varTestAge) End Function
And the form is open and the field is named txtTestDate
Sould I post the db?
-
WSLeighW
AskWoody LoungerThanks for your quick reply, Hans. What do you mean by a standard module?
I tried changing the reference as suggested but it runs to that line and then states that “..can’t find the field txtTestDate”
This is the reference I used ‘varTestAge = DateDiff(“yyyy”, varTestDate, Forms!Students!txtTestAge)’ when it came up with the message.
The form name is ‘Students’ the field name is ‘txtTestDate’. Have I got the reference correct?
![]() |
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
-
Licensing and pricing updates for on-premises server products coming July 2025
by
Alex5723
32 minutes ago -
Edge : Deprecating window.external.getHostEnvironmentValue()
by
Alex5723
37 minutes ago -
Rethinking Extension Data Consent: Clarity, Consistency, and Control
by
Alex5723
41 minutes ago -
OneNote and MS Word 365
by
CWBillow
2 hours, 30 minutes ago -
Ultimate Mac Buyers Guide 2025: Which Mac is Right For You?
by
Alex5723
2 hours, 40 minutes ago -
Intel Unison support ends on Windows 11 in June
by
Alex5723
2 hours, 54 minutes ago -
April 2025 — still issues with AMD + 24H2
by
Kevin Jones
3 hours, 5 minutes ago -
Windows 11 Insider Preview build 26200.5518 released to DEV
by
joep517
14 hours, 35 minutes ago -
Windows 11 Insider Preview build 26120.3671 (24H2) released to BETA
by
joep517
14 hours, 36 minutes ago -
Forcing(or trying to) save Local Documents to OneDrive
by
PateWilliam
23 hours, 29 minutes ago -
Hotpatch for Windows client now available (Enterprise)
by
Alex5723
11 hours, 25 minutes ago -
MS-DEFCON 2: Seven months and counting
by
Susan Bradley
7 hours, 19 minutes ago -
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
1 day, 8 hours ago -
Apple backports fixes
by
Susan Bradley
14 hours, 59 minutes ago -
Win 11 24H2 will not install
by
Michael1950
7 hours, 20 minutes ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
2 hours, 58 minutes ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
19 hours, 48 minutes ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
1 day, 10 hours ago -
Get back ” Open With” in context menus
by
CWBillow
1 day, 23 hours ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
15 hours, 17 minutes ago -
simple general stupid question
by
WSaltamirano
1 day, 21 hours ago -
April 2025 Office non-Security updates
by
PKCano
2 days, 14 hours ago -
Microsoft wants to hear from you
by
Will Fastie
1 day, 14 hours ago -
Windows 11 Insider Preview Build 22635.5160 (23H2) released to BETA
by
joep517
2 days, 17 hours ago -
Europe Seeks Alternatives to U.S. Cloud Providers
by
Alex5723
2 days, 23 hours ago -
Test post
by
Susan Bradley
3 days, 1 hour ago -
Used Systems to delete Temp files Gone WRONG what does this mean?
by
Deo
3 days, 3 hours ago -
SSD shuts down on its own
by
CWBillow
2 days, 18 hours ago -
OneDrive File Sharing Changes
by
David Clark
3 days, 11 hours ago -
OneDrive File Sharing Changes
by
David Clark
3 days, 13 hours ago
Recent blog posts
- MS-DEFCON 2: Seven months and counting
- Apple backports fixes
- April 2025 Office non-Security updates
- Microsoft wants to hear from you
- Reviewing your licensing options
- Apple has been analyzing your photos since September 2024
- What Windows 11 24H2 offers beyond bugs
- Making sense of Settings in Windows 11
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.