Hi,
I am trying to create a collection with 4 tables. My code has no errors but I'm also not getting a result. It is basically supposed to get the record from the first table, then retrieve the next values based on a matching ID, and so on for all 4 tables. Can anyone see any issues with my logic here?
ClearCollect(
Results,
{
JobTitle: Jobs.Title,
JobDescription: Jobs.Description,
JobSkillsDescription: AddColumns(
Filter('Job Skills', 'Job ID' = Jobs.'Job ID'),
JobSkillsDescription, Description
),
UserSkills: AddColumns(
Filter('User Skills', 'User Skill ID' in 'Job Skills'.'Skill Group ID'),
UserSkillsDescription, Title
)
}
)
The 4th table not shown in the code here is trying to retrieve the Persons name from a User table, but I wasn't about to do that without errors yet so I thought I'd start with the first 3 and get them working before I add that back.
Thanks