I have a situation where I have a database called issues and the main form will be the issue and when it started and the subform called resolution activities where a person/people are trying to solve the issue. There are some 3 or 4 date/time fields within the form and subform but I need a field on the main form and a report that shows the last date something was done to the issue. So I need to find the max date of 3 or 4 fields to place on the main form and to calulcate in a query. I know how to calculate the maxdate on 1 field but not many fields. Is this scenario possible and if so how? Thanks
![]() |
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 |
-
Max Date
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Max Date
- This topic has 5 replies, 4 voices, and was last updated 14 years, 11 months ago.
Viewing 4 reply threadsAuthorReplies-
WSAndrewKKWalker
AskWoody Lounger -
WSBennyC
AskWoody Lounger -
WSguitarzan8
AskWoody LoungerJuly 1, 2010 at 10:13 am #1231727You need to let us know what FE you’re using. Looks like Access. Also are there three or are there four date/time fields in the subform?
Here is a start. read help on IIF and you should be able to complete this on your own.
put a textbox on the main form.
in the textbox source put: =IIF(formName.subformName.date1ControlName > formName.subformName.date2ControlName, formName.subformName.date1ControlName,formName.subformName.date2ControlName)This will give you the newest date of 2 controls. I don’t know what will happen if one or both of them is NULL. Post the results if it works or not.
-
WSAndrewKKWalker
AskWoody LoungerJuly 1, 2010 at 6:58 pm #1231990It might also be worth having a look at a Custom User defined function for this.
Although they do tend to execute more slowly with big data sets.Have a look at Allen Brownes MaxOfList and MinOfList Functions
Yoy could use these to pass in the Max of each field using a Group By Query and it ought to return the Maximum of the Maximums so to speak
See Functions HERE
Also in Example DB attached (note this is in Access)
I have done the Calculation in a Query, BUT no reason you could not use it and pass it the Max Values from fields on a Sub Form.
-
WSLarryEngles
AskWoody LoungerJuly 1, 2010 at 9:42 pm #1232220Here is a custom function that gets the max date from a list of any length. Just keep adding arguments. It handles nulls and invalid dates as well.
Code:Public Function MaxOfDate(ParamArray dates() As Variant) As Date Dim MaxDate As Date, i As Integer MaxDate = 0 For i = 0 To UBound(dates) If (IsDate(dates(i))) Then If (Nz(dates(i), 0) > MaxDate) Then MaxDate = dates(i) End If Next i MaxOfDate = MaxDate Exit Function End Function
An example call would be: MaxDate = MaxOfDates (DateField1, DateField 2, DateField3, DateField4, … )
This works best in a form where you have only one record that is being evaluated, but it can work in a query as well, but, as AKW mentioned, it will be slower. In a query, I’d use nested iif statements if this became too slow.
Viewing 4 reply threads -

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
-
Office gets current release
by
Susan Bradley
2 hours, 33 minutes ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
19 hours, 5 minutes ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
3 hours, 36 minutes ago -
Stop the OneDrive defaults
by
CWBillow
19 hours, 54 minutes ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
1 day, 5 hours ago -
X Suspends Encrypted DMs
by
Alex5723
1 day, 8 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
1 day, 8 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
1 day, 8 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
1 day, 9 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
21 hours, 43 minutes ago -
Enabling Secureboot
by
ITguy
1 day, 4 hours ago -
Windows hosting exposes additional bugs
by
Susan Bradley
1 day, 17 hours ago -
No more rounded corners??
by
CWBillow
1 day, 13 hours ago -
Android 15 and IPV6
by
Win7and10
1 day, 3 hours ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
2 days, 5 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
2 days, 8 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
2 days, 3 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
2 days, 15 hours ago -
May preview updates
by
Susan Bradley
2 days, 3 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
1 day, 18 hours ago -
Just got this pop-up page while browsing
by
Alex5723
2 days, 8 hours ago -
KB5058379 / KB 5061768 Failures
by
crown
2 days, 5 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
1 day, 7 hours ago -
At last – installation of 24H2
by
Botswana12
3 days, 7 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
5 hours, 5 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
3 days, 19 hours ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
1 day, 17 hours ago -
Limited account permission error related to Windows Update
by
gtd12345
4 days, 8 hours ago -
Another test post
by
gtd12345
4 days, 9 hours ago -
Connect to someone else computer
by
wadeer
10 hours, 25 minutes 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.