Hi
I have two data sources.
Data1 have columns Class and NoteNumber.
So notes can be repeated in different classes.
| Class1 | Note1 |
| Class1 | Note2 |
| Class1 | |
| Class2 | Note1 |
| Class2 | Note3 |
Data2 have NoteNumbers and NoteDescription
| Note1 | Description1 |
| Note2 | Description2 |
| Note3 | Description3 |
Gallery1 is filtered by dropdown by Class.
We would like to show all Notes and Description in Gallery2.
So when Class 1 is selected, Note1 and 2 with descriptions are shown.
Selection of Class2 will show Note1 and 3 with descriptions.
Inner join of two tables basically, where first one is filtered.
Can someone advise how to filter Gallery2 effectively?
Thanks in advance!