Thank you for taking the time to read my question.
I have 2 tables related as n:n
'Scheduler Tasks'
'Scheduler Resources'
I want to show all the tasks related to a resource. I select a resource from a drop down box.
So far I can't seem to accomplish this. I thought I should be able to use dot notation to refer to the Resources...
'Scheduler Tasks'.'Scheduler Resources'.Name but this is not the case. I'm also not able to return the GUID which is what I think I'm supposed to be doing.
Here is an example of what I'm trying
With({tRez:LookUp('Scheduler Resources',Name = cboResources.Selected.tnca_name,'Scheduler Resource')},
Filter('Scheduler Tasks','Scheduler Tasks'.*Thought I would be able to select Resources here* = tRez)
)
Any help is greatly appreciated.
Thanks