Find specific [survey_status] for an asset that has many records

Evening… Please could someone point a newbie in the right direction?

I need to look at [asset_name] and find the most recent [survey_status] in the survey table below which has updates & adds permissions:

2X_4_4f239cb5cbe9ee285509b185c8b6720ff0159f33.png

And then put it in [survey_status] against [rfdesign_source_asset_name] in the rf_design table below which only has updates permissions:

2X_0_0082991a5c8fcc3c7b98aa6d7a49435553c73b8a.png

Thanks in advance…

Solved Solved
0 15 542
1 ACCEPTED SOLUTION

Bahbus
New Member
LOOKUP(
  MAXROW(“survey”,“_ROWNUMBER”,
    IN([_THISROW].[rfdesign_source_asset_name], [asset_name])
    ),
  “survey”,
  “id”,
  “survey_status”
)

View solution in original post

15 REPLIES 15
Top Labels in this Space