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 SkipVought 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 Format Max(Value) in a Report to be Bold

Status
Not open for further replies.

Crownknox

Technical User
Apr 27, 2000
25
0
0
US
I am working an a stats report that gives detailed info for individuals.

(For Example: If an individuals [Daysworked] is more than anyone else, I would like it to be bold or another color.)

I've tried using an if...Then statement in the OnFormat section but I get errors about using Max([Daysworked])

Should I be using Max??

Any help would be appreciated.
 
Try using:
Code:
DMax("[Daysworked]","[YourTable]","[IndividualID] = " & IDNum)
Or some variant of that.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top