How to use MAXROW with Related List instead of the Table ?

 

How to get MAXROW from Related List instead of the Table ? 
I tried this but doesn’t work

Maxrow([Related Dies], “_rownumber”)

Solved Solved
0 10 615
1 ACCEPTED SOLUTION

Steve
Platinum 5
Platinum 5

You can't use MAXROW() for that. This should be equivalent:

ANY(
  ORDERBY(
    [Related Dies],
    [_ROWNUMBER],
      true
  )
)

View solution in original post

10 REPLIES 10