max & Int together

mike wild

Registered User.
Local time
Today, 11:53
Joined
Feb 16, 2003
Messages
69
I need to use the Int and max functions together.

To find the largest number and then crop to the whole number.

Can It Be Done

I am working in the control source property of the field.

Here is what i have so far:

=The Leader has £" & Max([total1]) & " In the Bank"
 
The first problem you'll encounter is that there is no built-in Max() function. There is an aggregate Max() function that you can use when running totals queries, and a DMax() function. There should be no issue using Int() with either of those.
 
How?

How do i use them together:

int & Max([total1])?
 

Users who are viewing this thread

Back
Top Bottom