Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I grab the largest number in a table? 2

Status
Not open for further replies.

robojeff

Technical User
Dec 5, 2008
220
US


How do I grab the largest number in a table?

I have a query that does this but I would like to grab this number and assign it to a variable that I can increment and embed it into a string of characters from inside of an event procedure...

There must be an easy way to do this...

thanks

Code:
SELECT DISTINCTROW Max([Mtbl].[DCode]) AS [Max Of DCode]
FROM Mtbl;
 

Thanks Duane-

your solution works great and is very simple!
 


Code:
Dim dblMaxDCode as Double
dblMaxDCode = DMax("DCode","Mtbl")

This works really well, but I just realized that if this maximum DCode number (when incremented) becomes greater than 15, then I have to increment another number in the table called SBU and set DCode to zero.

This changes everything as I now have to search for the maximum value of SBU in the table and then the maximum value of DCode that exists with the maximum value of SBU.

In other words I need to set the table to look like this:

Dcode . . . SBU
13 . . . . . 1
14 . . . . . 1
15 . . . . . 1
0 . . . . . 2 <- need to increment SBU & reset DCode
1 . . . . . 2
2 . . . . . 2

Is there an easy way to modify this in order to search for the highest value of DCode of the highest value of SBU?

Thanks

 
dblMaxDCode = DMax("DCode","Mtbl","SBU=" & DMax("SBU","Mtbl"))

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top