-
WSAlexya1
AskWoody LoungerThanks Wendell… but the problem I’m having is with the syntax…
This is what I have so far for the code…Dim acApp As Object ‘ Declare variable to hold the reference.
Dim acDatabase As DAO.DatabaseSet acApp = GetObject(“C:Documents and SettingstreaspaDesktopdb1.mdb”)
With acApp
.Visible = True
.DoCmd.OpenForm “Form1”
.Forms(“Form1”).frmOptions = 1
.Forms(“Form1”).cmdDone.SetFocus
‘cmdDone_Click ‘this is where I don’t know how to enter the command… I’ve tried a few things but I can’t get it right…
.Quit
End WithSet acApp = Nothing
End Function
P.S. This is just a sample… Not the real thing…
-
WSAlexya1
AskWoody LoungerDecember 8, 2003 at 8:33 pm in reply to: How to Return Jet Version Number? (a2k (9.0.6926) SP-3 Jet 4.0 SP-7) #754661This will have to be adapted… but check out this link…
http://www.granite.ab.ca/access/verifyjetsp.htm%5B/url%5DHopefully it’s a start for you anyway…
-
WSAlexya1
AskWoody LoungerDecember 8, 2003 at 8:33 pm in reply to: How to Return Jet Version Number? (a2k (9.0.6926) SP-3 Jet 4.0 SP-7) #754662This will have to be adapted… but check out this link…
http://www.granite.ab.ca/access/verifyjetsp.htm%5B/url%5DHopefully it’s a start for you anyway…
-
WSAlexya1
AskWoody LoungerI’m assuming you mean that you want to return the label caption property that corresponds with the option button selected?
If so, there are at least a couple of options for you… Depending on how many option buttons are in the group…You could use an IIF statement and nest the results… For example:
fldChoice: IIf([Forms]![frmName].[optGroupName]=1,[Forms]![frmName].[lblOneName].[Caption],IIf([Forms]![frmName].[optGroupName]=2, [Forms]![frmName].[lblTwoName].[Caption], [Forms]![frmName].[lblOneName].[Caption])Or you could try something like the Choose function…
=Choose([Forms]![frmName].[optGroupName], [Forms]![frmName].[lblOneName].[Caption], [Forms]![frmName].[lblTwoName].[Caption],[Forms]![frmName].[lblThreeName].[Caption])(of course, you’ll have to change the names I’ve used to your own… )
The Choose looks cleaner… but I haven’t tested it… Give both a try…
HTH… -
WSAlexya1
AskWoody LoungerI’m assuming you mean that you want to return the label caption property that corresponds with the option button selected?
If so, there are at least a couple of options for you… Depending on how many option buttons are in the group…You could use an IIF statement and nest the results… For example:
fldChoice: IIf([Forms]![frmName].[optGroupName]=1,[Forms]![frmName].[lblOneName].[Caption],IIf([Forms]![frmName].[optGroupName]=2, [Forms]![frmName].[lblTwoName].[Caption], [Forms]![frmName].[lblOneName].[Caption])Or you could try something like the Choose function…
=Choose([Forms]![frmName].[optGroupName], [Forms]![frmName].[lblOneName].[Caption], [Forms]![frmName].[lblTwoName].[Caption],[Forms]![frmName].[lblThreeName].[Caption])(of course, you’ll have to change the names I’ve used to your own… )
The Choose looks cleaner… but I haven’t tested it… Give both a try…
HTH… -
WSAlexya1
AskWoody LoungerI’m assuming there is already a text box control in the report design that gets it’s value from input value in tblPropertyName…
If so, just change the control source property to:
= DSum(“[RoomProration]”, “qryNCTotalTaxExempt”)If you want to read more about this, lookup Domain Aggregate functions in Access Help…
HTH -
WSAlexya1
AskWoody LoungerI’m assuming there is already a text box control in the report design that gets it’s value from input value in tblPropertyName…
If so, just change the control source property to:
= DSum(“[RoomProration]”, “qryNCTotalTaxExempt”)If you want to read more about this, lookup Domain Aggregate functions in Access Help…
HTH -
WSAlexya1
AskWoody LoungerThis is probably to do with having other fields in your query with different values… If you do, ask yourself how you know which record with 18 in the topvalue field is the one you want?… Is there another field that answers that question… and is it string, number, date, etc data?
Post back with sample data and/or the sql if you need help figuring it out…
-
WSAlexya1
AskWoody LoungerThis is probably to do with having other fields in your query with different values… If you do, ask yourself how you know which record with 18 in the topvalue field is the one you want?… Is there another field that answers that question… and is it string, number, date, etc data?
Post back with sample data and/or the sql if you need help figuring it out…
-
WSAlexya1
AskWoody LoungerHi John… Great example! … Thanks…
For those who are following the thread, I got a sample of the database and fixed it up with pbrown…
We got the control and field names figured out and the code looks very similar to John’s… He did have one other problem though… The “[Parts] = Altima…” part was a mistake… The data in the Parts field was nothing like that… which meant that he got no records returned… Hence the Errors all over the report… -
WSAlexya1
AskWoody LoungerHi John… Great example! … Thanks…
For those who are following the thread, I got a sample of the database and fixed it up with pbrown…
We got the control and field names figured out and the code looks very similar to John’s… He did have one other problem though… The “[Parts] = Altima…” part was a mistake… The data in the Parts field was nothing like that… which meant that he got no records returned… Hence the Errors all over the report… -
WSAlexya1
AskWoody LoungerSorry it took so long for me to answer… Duty called…
Sure… I sent you a private message with my work email address…
I don’t know if I’m allowed to post it here… and while I’m at work I can’t get at my online email account anyway…
I’ll continue posting my advice and questions on here though…Thanks for suggesting it Pat! I’m dying to get a look at this thing…
-
WSAlexya1
AskWoody LoungerSorry it took so long for me to answer… Duty called…
Sure… I sent you a private message with my work email address…
I don’t know if I’m allowed to post it here… and while I’m at work I can’t get at my online email account anyway…
I’ll continue posting my advice and questions on here though…Thanks for suggesting it Pat! I’m dying to get a look at this thing…
-
WSAlexya1
AskWoody LoungerOkee dokee… Unfortunately it doesn’t look like I’m going to get to see this thing, so let’s try this one piece at a time…
First of all… Let’s talk about the report Sort…
1) I don’t know why you would have put that SortBy field in the query… If the recordsource for the “General Info” Report contain the fields, [Project Classification] and [Y1Sum], and those are the fields you want to sort on that is all you need…
2) DoCmd.OpenReport does not have a Sorting argument so I would just use the Report object itself and the OrderBy property… For example… The following code will open the report needed and set the OrderBy property as well as turn OrderByOn property to True… This is assuming I’m understanding correctly and you have a control option group called “grpSortBy” on the form with three different Options… The user having selected 1 meaning “sort the report by Y1Sum”, 2 meaning “sort the report by Project Classification” and 3 meaning
-
WSAlexya1
AskWoody LoungerOkee dokee… Unfortunately it doesn’t look like I’m going to get to see this thing, so let’s try this one piece at a time…
First of all… Let’s talk about the report Sort…
1) I don’t know why you would have put that SortBy field in the query… If the recordsource for the “General Info” Report contain the fields, [Project Classification] and [Y1Sum], and those are the fields you want to sort on that is all you need…
2) DoCmd.OpenReport does not have a Sorting argument so I would just use the Report object itself and the OrderBy property… For example… The following code will open the report needed and set the OrderBy property as well as turn OrderByOn property to True… This is assuming I’m understanding correctly and you have a control option group called “grpSortBy” on the form with three different Options… The user having selected 1 meaning “sort the report by Y1Sum”, 2 meaning “sort the report by Project Classification” and 3 meaning
![]() |
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 |

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
-
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
2 hours, 58 minutes ago -
Apple backports fixes
by
Susan Bradley
3 hours, 6 minutes ago -
Win 11 24H2 will not install
by
Michael1950
3 hours, 11 minutes ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
2 hours, 42 minutes ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
4 hours, 50 minutes ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
2 hours, 59 minutes ago -
Get back ” Open With” in context menus
by
CWBillow
15 hours, 51 minutes ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
19 hours, 38 minutes ago -
simple general stupid question
by
WSaltamirano
13 hours, 38 minutes ago -
April 2025 Office non-Security updates
by
PKCano
1 day, 6 hours ago -
Microsoft wants to hear from you
by
Will Fastie
6 hours, 45 minutes ago -
Windows 11 Insider Preview Build 22635.5160 (23H2) released to BETA
by
joep517
1 day, 10 hours ago -
Europe Seeks Alternatives to U.S. Cloud Providers
by
Alex5723
1 day, 15 hours ago -
Test post
by
Susan Bradley
1 day, 17 hours ago -
Used Systems to delete Temp files Gone WRONG what does this mean?
by
Deo
1 day, 19 hours ago -
SSD shuts down on its own
by
CWBillow
1 day, 11 hours ago -
OneDrive File Sharing Changes
by
David Clark
2 days, 3 hours ago -
OneDrive File Sharing Changes
by
David Clark
2 days, 5 hours ago -
Win 10 Pro 22H2 to Win 11 Pro 23H2 Conversion Guide
by
doneager
1 day, 5 hours ago -
Today is world backup day
by
Alex5723
1 day, 21 hours ago -
Windows .exe on Mint
by
Slowpoke47
2 hours, 25 minutes ago -
Reviewing your licensing options
by
Susan Bradley
3 hours, 19 minutes ago -
Apple has been analyzing your photos since September 2024
by
B. Livingston
1 day, 2 hours ago -
What Windows 11 24H2 offers beyond bugs
by
Lance Whitney
22 hours, 27 minutes ago -
Making sense of Settings in Windows 11
by
Simon Bisson
23 hours, 47 minutes ago -
Windows 11 pro fails to log in after upgrading Win 10 pro to Win 11 pro 24h2
by
ben_sitaud
2 days, 3 hours ago -
23H2 / 24H2 / Local v. Microsoft Account.
by
CWBillow
2 days, 1 hour ago -
YouTube Ad Blocker Blocker
by
bbearren
2 days, 1 hour ago -
Obscure historical facts about Windows
by
Cybertooth
2 days, 3 hours ago -
Microsoft Backup
by
Linda2019
1 day, 18 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.