Hey all,
I have three dataverse tables, Location and Issues, Country
Location
countryID (lookup) townID (lookup) titleID (lookup)
1 45 20
1 46 21
1 47 22
2 48 23
2 49 24
3 50 25
3 51 26
CountryDetails
countryID description
1 Text description 1
2 Text description 2
3 Text description 3
Town details
townID issues
45 Text for issue 1
46. Text for issue 2
47. Text for issue 2
48. Text for issue 3
49 Text for issue 4
I am trying to display a gallery in a gallery by using the Location table as the data source. I am trying to show the distinct description in the first gallery and in the second gallery, when a user selects a description, the second gallery shows this issues by filtering the countryID. The gallery show look like
description Text for issue
Text for issue
description Text for issue
Text for issue
Text for issue
Text for issue
description Text for issue
my code for the items in the second gallery is
Filter(
Location
townID = gal_one.Selected.Value
)
Any suggestions on where I am going wrong would be really helpful.
thank you for helping.