MS Access Max() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

MS Access Max() Function

❮ MS Access Functions

Example

Find the price of the most expensive product in the "Products" table:

SELECT Max(Price) AS LargestPrice FROM Products;
Try it Yourself »

Definition and Usage

The Max() function returns the largest value of an expression.

Syntax

Max(expression)

Parameter Values

Parameter Description
expression Required. A numeric value (can be a field or a formula)

Technical Details

Works in: Access 2016, Access 2013, Access 2010, Access 2007, Access 2003, Access XP, Access 2000

❮ MS Access Functions