automatic boot the maximum value by text classification

Hello dear experts. I need to write an automatic boot the maximum value by text classification with the following expression:

It turns out that it is writing me only the lowest value in text classification. please i ask for help

ANY(SORT(SELECT(Confirmação de Pagamento da Anuidade[Exercício],
[Email]=[_THISROW].[Email],FALSE

))FALSE)

Solved Solved
1 5 72
1 ACCEPTED SOLUTION

Aurelien
Google Developer Expert
Google Developer Expert

Hi @ADEFE_EUROPA 

What about this ?

 

ANY(
  TOP(
    SORT(
      SELECT(Confirmação de Pagamento da Anuidade[Exercício],
         [Email]=[_THISROW].[Email]
      ),
      TRUE
    ),1
  )
)

 

For reference:

SORT() - AppSheet Help

TOP() - AppSheet Help

ANY() - AppSheet Help

 

 

View solution in original post

5 REPLIES 5

Aurelien
Google Developer Expert
Google Developer Expert

Hi @ADEFE_EUROPA 

What about this ?

 

ANY(
  TOP(
    SORT(
      SELECT(Confirmação de Pagamento da Anuidade[Exercício],
         [Email]=[_THISROW].[Email]
      ),
      TRUE
    ),1
  )
)

 

For reference:

SORT() - AppSheet Help

TOP() - AppSheet Help

ANY() - AppSheet Help

 

 

Thank you dear Aurelien, I will try right now

MUCHAS gracias Aurelien!!!!!

Ha funcionado muy bien!!! Gracias

Hi ADEFE EUROPA:

Try with: 

MAXMAX(list)Highest item in a list. Learn more

 

ListTOPTOP(list, how-many)Initial list of items. Learn more

if not search on it: https://support.google.com/appsheet/table/10104782?hl=en&ref_topic=10099895,10173496,10099316,

Sara

Thank you dear Sara, but I think that essa is not good for text.
List of any numeric or any temporal type

Top Labels in this Space