Formula to Expression

How to I convert such formula from Google Sheets to an AppSheet expression

'MAXIFS($A$4:$A,$B$4:$B,"<>"&"")+1'

Solved Solved
0 3 119
1 ACCEPTED SOLUTION

Try

MAX(
   SELECT( tableName[columnA], ISNOTBLANK([columnB]) )
) + 1

This returns a number so it'd be suitable for being in column's initial expression or view's display-name expression.

View solution in original post

3 REPLIES 3

Try

MAX(
   SELECT( tableName[columnA], ISNOTBLANK([columnB]) )
) + 1

This returns a number so it'd be suitable for being in column's initial expression or view's display-name expression.

THANKS, IT WORKS

Top Labels in this Space