Hi,
I am working with a modeldriven app which has 3 entities:
| Table1 | Table2 | Table3 |
| Name: Textfield | Project: Textfield | Product: Textfield |
| ProjectOwner: Textfield | ProductName: Lookup to Table3 | Title: Textfield |
| ProjectName: Lookup to Table2 |
|
In my dropdown, I want to see the Title (table3) linked to a certain ProjectOwner (table1).
I added the following syntax to the items property of my dd, but it didn't work:
AddColumns(
Filter(
Table1;
ProjectOwner = "Person x"
);
"NewColumn";
LookUp(Table2; Project = ProjectName).ProductName.Title
)
I assume there is a problem with "Project = ProjectName" since ProjectName is also a lookup?
Thanks in advance!

Report
All responses (
Answers (