Hello,
I am working with some Dataverse/CDS tables where the Game Types table has a many-to-many (N:N) relationship to the Round Types table which has a many-to-many (N:N) relationship with the Station Types table. In my Canvas app, I would like to create a table that contains all of the Station Type records that are related to all of the Round Type records that are related to the selected Game Type record in a drop-down control. Or to put it another way, find all of the Round Types records that are related to the selected Game Type record (easy to do), and then find all of the Station Types records related to each of those Round Types records (hard to do?), and put them in a table.
I understand how to use dot notation to access one level of parent and/or child records however this will only allow me to traverse one level and I need to traverse two levels. If the dot notation traversed more than one level then my formula for the table would be easy like this:
drpGameTypes.Selected.'Round Types'.'Station Types'
However, when I try this I get the error message "The specified column is not accessible in this context." with a red squiggly underline under the .'Station Types' portion of the formula.
Can this be done in Canvas Apps? If so, how?