I have a table:
I tried this expression:
MAXROW(
“Messages”,
“_ROWNUMBER”
)
to give me the latest row (last on the spreadsheet)
but i get this error:
I have a table:
I tried this expression:
MAXROW(
“Messages”,
“_ROWNUMBER”
)
to give me the latest row (last on the spreadsheet)
but i get this error:
You can’t use MAXROW() as a slice condition as it returns REF values, not a boolean (TRUE/FALSE) value. Try with:
[_RowNumber] = MAX(TableName[_RowNumber])
Worked great. Thank!
You’re welcome.