-
WSAlexya1
AskWoody LoungerI don’t know if this is the answer for you… but personally I’d use a subform control…
For example: The main form would be in Single Form view with the Date control in the Detail section…. Then I would place a subform control into the detail section… The subform would be in Continuous Forms view, showing the file data, linked on the Date field…Does that help at all??
-
WSAlexya1
AskWoody LoungerYou’re right Charlotte… Sorry about that…
-
WSAlexya1
AskWoody LoungerOOps… Too late… I guess it is Bill Manville’s Addin…
-
WSAlexya1
AskWoody LoungerHi Tim…
I found the answer to that question on here long too long ago…. I’d like to give credit to the appropriate person, but I can’t remember where I got it…
The attached file contains an Add-in (I think came from The Access Web site) that will find all links in a workbook and ask you whether to delete them or not… Cool huh??If you need help on installing the Add-in, let me know…
HTH(P.S. This works on Excel 2000 on my machine… Not sure about 97 though…)
-
WSAlexya1
AskWoody LoungerLucas,
That’s short for Description… I made the Levels table have an ID and Description… (in case you ever wanted to see Green, Yellow, Lavender or White on some form or report… ) …You can use the ID throughout and get at the description (color) whenever needed…
I was trying to show you that you could do a query that would show the Level each employee was currently on…. I used the Max function to select the highest level currently in the records for each employee… If that makes any sense…
You can pull out pretty well whatever data is needed using relationships… Saves redundant data and helps ensure data integrity…
For example, when you said that you would probably have to add a 5th level at some point, I thought if you had a Levels table, you will simply have to add a record to that table and it can then be used throughout the database in the future…. Saves the time of looking through queries and reports for calculated fields like “=IIF(LevelID = 1, “Green,… ” etc… don’t you think?
(Geez I’m yappy today
… Sorry about that!)
-
WSAlexya1
AskWoody LoungerLucas,
I don’t know if this will help you or not, but I played around and quickly made a small example of what can be done with a bit of normalization in your database design… I created some general tables and created relationships between the data (as I saw it on what little information I have) and did a couple of queries to show how it could be used…
Take a peek… Hopefully it’ll give you some ideas, if nothing else…
P.S. If the PID is a unique number… and (I’m assuming) the Student ID is a unique number… I don’t understand why you’d need both… but I included the PID in the Employees table in case it has some other function for you…
HTH
-
WSAlexya1
AskWoody LoungerGood Morning David…
These are distinct records…
The different house name makes them distinct…
If you want to see Forest Healthcare 10, Acorn Healthcare 10 (I’m assuming the 10 represents the house type), you need to remove the house name field…HTH
-
WSAlexya1
AskWoody LoungerHave you tried setting the Can Grow property of the Detail Section to Yes?
-
WSAlexya1
AskWoody LoungerOops… That isn’t going to work quite right either…
I don’t know what your data the query looks like… but I just created a test db and tried it myself… If the date changes while inside the publication type loop, that isn’t going to be caught….
Charlotte is right… Best to use the fields collection… Or define different recordsets, maybe using SQL statements in the code… I’ve always used different recordsets for nested loops…
Post more details of the query and/or examples of what output you want and maybe we can help more…
Have a great day! -
WSAlexya1
AskWoody LoungerI can’t open the sample db since I only have Access ’97 at work… but I looked at your code and one problem is that you have an AND in the second loop condition…
Do Until rst.EOF And lngSavedCategory rst!CategoryID
This means that the first time through the outer loop it’s on the first record… then by the time it’s done the second loop once it’s at the end of the recordset…
And… even if you had an OR in that second loop condition you’d still have problems because you never move the recordset at the bottom of the outer loop…From what you said you wanted to do… I’ve come up with this code:
Dim db as dao.database
Dim rst as dao.recordset
Dim pdatLastDate as Date
Dim pstrPublicationType as StringSet db = CurrentDb
Set rst = db.OpenRecordset(“qryTesting”)rst.MoveFirst
If Not rst.EOF ThenDo Until rst.EOF
pdatLastDate = rst!LastDate
Do Until pdatLastDate rst!LastDate OR rst.EOF
pstrPublicationType = rst!PublicationType
Do Until pstrPublicationType rst!PublicationType OR rst.EOF
‘various tasks
rst.movenext
Loop
rst.movenext
Loop
rst.movenext
Loop
End IfSet rst = nothing
Set db = nothingI added an IF statement to handle if there are no records in the recordset to begin with…. If by moving first, we are already at the end of the recordset, it won’t drop into the loop… (a Do Until will always be completed once… and this would cause an error if there were no records…)
HTH
(P.S. This is assuming that you have the recordset sorted by the fields in question… LastDate and then PublicationType… )
-
WSAlexya1
AskWoody LoungerHmmm…
aaucoin… I’m not sure I understand what you are asking…
If you want to know the proper syntax to designate a table as the row source its:
Forms!frmName!cboName.RowSource = “tblName”
(which means: Assign the table named “tblName” -> to the RowSource property -> of the combo box named “cboName” -> on the form named “form1” -> in the Forms collection… )If you want to know how to properly designate that the data to be contained in that combo box will be coming from a Table or Query, rather than a Field List or Value List… then this is the code:
Forms!frmName!cboName.RowSourceType = “Table/Query”Let me know if I’m completely misunderstanding… HTH
-
WSAlexya1
AskWoody LoungerCatharine,
I found this information at:
http://www.alamopc.org/PCAlamode/reviews/c…/rev030206.html%5B/url%5D“Today, Quattro Pro comes bundled as one of the business tools in WordPerfect
-
WSAlexya1
AskWoody LoungerYou need to add the following code to the BeforeUpdate Event for the cbo1… If there are more than 2 values that decide which table is the rowsource then you can use a Select Case structure…
Forms!form1.cbo2 = “” ‘this will clear cbo2
If cbo1 = “value1” Then
Forms!form1!cbo2.RowSource = “YourTable”
Else
Forms!form1!cbo2.RowSource = “YourOtherTable”
End IfOh… and you’ll still have to play with the Bound Column to figure out what field to display in cbo2…
Hope this makes sense… Let me know if you need more detailed instructions… HTH -
WSAlexya1
AskWoody LoungerWow… Thanks Fellas!!
You guys are GOOD!
I’m sure that’s plenty of help for now… I’ll get to work on it and post again if I need more expert assistance…Have a great afternoon!
On another note: Wohoo!
I made it to “Lounger” !!!… I thought I’d be NewLounger for another year or two…
-
WSAlexya1
AskWoody LoungerJezsik…
I don’t know of any way in Access, to save a query as just a query without it actually being an .mdb of it’s own…but from the sounds of it, that would probably be a solution for you…
You can right click on the query or report in the database window… click “Save as/Export” -> To an external file or database… and choose .mdb type… Then email that file to the people needing it… Then have them “Get External Data” -> “Import” … from the File menu… while in their copy of the database and pull the new items in…
Just curious… Are you not on a network?… If so, you might want to consider splitting the database so that you can update the front-end and just replace that when needed… Just a thought…
… but what do I know?
HTH
![]() |
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
-
Woody (Awaiting moderation)
by
Scott
1 hour, 46 minutes ago -
24H2 has suppressed my favoured spider
by
Davidhs
4 hours, 4 minutes ago -
GeForce RTX 5060 in certain motherboards could experience blank screens
by
Alex5723
12 hours ago -
MS Office 365 Home on MAC
by
MickIver
5 hours, 49 minutes ago -
Google’s Veo3 video generator. Before you ask: yes, everything is AI here
by
Alex5723
1 day, 2 hours ago -
Flash Drive Eject Error for Still In Use
by
J9438
1 day, 3 hours ago -
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
1 day, 20 hours ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
1 day, 20 hours ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
1 day ago -
Migrate off MS365 to Apple Products
by
dmt_3904
1 day, 1 hour ago -
Login screen icon
by
CWBillow
15 hours, 46 minutes ago -
AI coming to everything
by
Susan Bradley
1 hour, 7 minutes ago -
Mozilla : Pocket shuts down July 8, 2025, Fakespot shuts down on July 1, 2025
by
Alex5723
2 days, 12 hours ago -
No Screen TurnOff???
by
CWBillow
2 days, 12 hours ago -
Identify a dynamic range to then be used in another formula
by
BigDaddy07
2 days, 13 hours ago -
InfoStealer Malware Data Breach Exposed 184 Million Logins and Passwords
by
Alex5723
3 days, 1 hour ago -
How well does your browser block trackers?
by
n0ads
2 days, 11 hours ago -
You can’t handle me
by
Susan Bradley
10 hours, 11 minutes ago -
Chrome Can Now Change Your Weak Passwords for You
by
Alex5723
2 days, 4 hours ago -
Microsoft: Over 394,000 Windows PCs infected by Lumma malware, affects Chrome..
by
Alex5723
3 days, 12 hours ago -
Signal vs Microsoft’s Recall ; By Default, Signal Doesn’t Recall
by
Alex5723
2 days, 15 hours ago -
Internet Archive : This is where all of The Internet is stored
by
Alex5723
3 days, 12 hours ago -
iPhone 7 Plus and the iPhone 8 on Vantage list
by
Alex5723
3 days, 12 hours ago -
Lumma malware takedown
by
EyesOnWindows
3 days, 1 hour ago -
“kill switches” found in Chinese made power inverters
by
Alex5723
3 days, 21 hours ago -
Windows 11 – InControl vs pausing Windows updates
by
Kathy Stevens
3 days, 21 hours ago -
Meet Gemini in Chrome
by
Alex5723
4 days, 1 hour ago -
DuckDuckGo’s Duck.ai added GPT-4o mini
by
Alex5723
4 days, 1 hour ago -
Trump signs Take It Down Act
by
Alex5723
4 days, 9 hours ago -
Do you have a maintenance window?
by
Susan Bradley
2 days, 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.