Notification

AppSheet will be conducting service maintenance starting Sunday, May 19th, 2024 at 12:00 PM (7:00 PM UTC) and completing no later than 4:00 PM PDT (11:00 PM UTC). Learn more

La pagina richiesta al momento non è disponibile nella tua lingua. Puoi selezionare una lingua diversa nella parte inferiore della pagina oppure tradurre istantaneamente qualsiasi pagina web nella lingua che preferisci tramite la funzionalità di traduzione integrata di Google Chrome.

MAXROW()

Row with greatest value in column

Returns the key of a row (Ref value) in the data set that contains the maximum value found in the named column from among the rows selected by an expression, or from among all rows if an expression was not provided.

Sample usage

MAXROW("Products", "Discount") returns the key value for the row in the Products data set that has the highest value in the Discount column (that is, which product has the greatest discount?). Equivalent to MAXROW("Products", "Discount", TRUE).

MAXROW("MyTable", "_ROWNUMBER") returns the key value for the row in the MyTable data set that has the highest value in the _ROWNUMBER column (that is, which row was added last?).

MAXROW("Students", "GPA", ([Class] = "2018")) returns the row for the (one) student with the highest GPA of the class of 2018.

MAXROW("Sales", "Close Date", ([City] = "Madrid")) returns the row for the newest sale in Madrid.

MAXROW("Events", "Date", ([Date] < [_THISROW].[Date])) returns the row for the most recent preceding event.

MAXROW("Events", "Date", ([Date] < DATE("1/1/" & YEAR(TODAY())))) returns the row for the most recent event prior to this year. See also: DATE(), TODAY(), YEAR()

MAXROW("MyTable", "SomeColumn", FALSE) : returns a blank value because the select-row? expression will always return FALSE, excluding all rows from the search.

Common Problems

MAXROW(Events, Date) produces the error, Expression [...] could not be parsed due to exception: #VALUE!. In this example, the column name, Date, has significance within the internals of AppSheet and causes confusion. Any data set name that matches an AppSheet or Excel function name may produce this problem. To fix, quote the problem name: MAXROW(Events, "Date")

MAXROW("Events", "Date", ([Venue] = [Wanted Venue])) produces the error, Unable to find column [...]. Column references within the select-row? expression (such as, [Venue]) are to the row being considered as the data set is searched. To access columns outside the row being considered, such as when using MAXROW() from within a column constraint, app formula, initial value, or format rule, reference the external column using _THISROW: MAXROW("Events", "Date", ([Venue] = [_THISROW].[Wanted Venue]))

Syntax

MAXROW(dataset, column, [select-row?])

  • dataset - Name of the table or slice (the "data set") to search as a literal Text value (quoted or unquoted); may not be an expression.
  • column - Name of the column of the named data set in which to find the maximum value, as a literal Text value (quoted or unquoted); may not be an expression.
  • select-row? - An optional Yes/No expression, evaluated for each row of the data set, that returns TRUE or FALSE indicating whether the row should be included (TRUE) or excluded (FALSE) in the search for the maximum value. If no expression is provided, all rows of the data set will be searched (equivalent to the expression, TRUE).

Notes

If the column maximum was found in more than one row, one of the maximum rows will be chosen at random.

See also

FILTER()

MAX()

MINROW()

ORDERBY()

REF_ROWS()

SELECT()

 

Was this helpful?

How can we improve it?

Need more help?

Try these next steps:

true
Search
Clear search
Close search
Main menu
3562684728564936680
true
Search Help Center
true
true
true
false
false