How to get MAXROW from Related List instead of the Table ?
I tried this but doesnโt work
Maxrow([Related Dies], โ_rownumberโ)
Solved! Go to Solution.
You can't use MAXROW() for that. This should be equivalent:
ANY(
ORDERBY(
[Related Dies],
[_ROWNUMBER],
true
)
)
You can't use MAXROW() for that. This should be equivalent:
ANY(
ORDERBY(
[Related Dies],
[_ROWNUMBER],
true
)
)
Can we use time stamp instead of row number?
Yes, you can use a time stamp instead of the row number.
Thanks Steve but this will choose a random value instead of the one with maximum row number. I want the row with maximum row number (the latest one) .
Wrong.
@Steve I am using the following expression to arrange a different table in order to fetch the last value. unfortunately, it says (ORDERBY has invalid inputs). Am i writing it wrong?
ANY(
ORDERBY(
Submittal RevNo[Rev],
Submittal RevNo[_RowNumber],
TRUE
)
)
ANY(
ORDERBY(
Submittal RevNo[Rev],
[_RowNumber],
TRUE
)
)
Still giving (ORDERBY has invalid inputs)๐
Thank you. It is comprehensive ๐
User | Count |
---|---|
18 | |
14 | |
11 | |
7 | |
4 |