Access Min Function

Last updated: August 26, 2026.

The Min aggregate returns the smallest non-Null value in a query group.

Syntax

Min(expression)
ArgumentDescription
expressionField or calculated expression whose smallest value is required

Examples

SELECT Min(UnitPrice) AS LowestPrice
FROM Products;

SELECT CustomerID, Min(OrderDate) AS FirstOrder
FROM Orders
GROUP BY CustomerID;

Min ignores Null values. It works with numbers, dates, and sortable text values.

See Microsoft’s Access function reference for related expression functions.

admin

admin

Leave a Reply

Your email address will not be published.