How to do virtual column from a related column

111139
New Member

Hi
I am trying to make an app for my organization property control and inspection

I make two table 1. Property table 2. Inspection
The Inspection table has id ref. To the Property table and content a Status column of each inspection

How can i put a virtual column in the Property table to select and display the latest update status from the [Related Inspection column] at the end of the property table

Thank you very very much

Solved Solved
0 6 209
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try:

ANY(
  ORDERBY(
    [Related Inspections],
    [_ROWNUMBER],
      TRUE
  )
)

View solution in original post

6 REPLIES 6
Top Labels in this Space