Hi I am using the above action to achieve the following. Retrieve the value entered in the [Fabrication Time] column of the Routings_Master Table and set that value for the [Fabrication Time] column in the PMF_Associated_Data Table. The following steps are what I have done but the action is not setting the value in the PFM_Associated_Data_Table.
I am obviously missing something so I am hoping someone can advise what that might be.
Created GET RMF Values
Expression for [Fabrication Time] is
ANY(
SELECT(
Routings_Master[Fabrication Time],
AND(
ISNOTBLANK([Product Code]),
([Product Code] = [_THISROW].[Product Code])
)
)
)
and is yielding the following test result for the [Product Code] in question
Create Set PMF Associated Data Values
Expression for Referenced Rows is
FILTER(
âPMF_Associated_Dataâ,
AND(
ISNOTBLANK([Product Code]),
([Product Code] = [_THISROW].[Product Code])
)
)
and is yielding the following test result for the [Product Code] in question
Set âForm Savedâ âEvent Actionâ for Routings_Master Form
The only other thing I would add, and not sure if relevant, is that the Routings_Master Table IsPartOf another table called Works_Orders_Master through [Record ID].
Hope this provides enough information. Any help would be great, thank you.





