Everyone, hoping someone can point me in the reigh direction here.
i have 3 lists, Department, Inspection, and actions.
Inspection has a column called department which is a lookup column from departments, and action has a lookup column called related inspection.
I'm trying to get departments on actions with the following code:
AddColumns(
Action,
DebtColumn,
LookUp(
Inspections,
RelatedInspection.Id = Inspections[@ID], Department
)
)
however the values returned on DebtColumn are empty, where am i going wrong?
Thanks in advance