I have an excel in one drive which I am using as a data source
I have two drop downs on the screen and a Gallery
Based on the selected values in the drop downs the galley should filter and show the results from excel.
Dropdown1 = Distinct(Table1.ServiceGroupName,ServiceGroupName)
Dropdown2= Distinct(Filter(Table1,Dropdown1.Selected.Result= ServiceGroupName).ServiceName,ServiceName)
gallery1 Items = Filter(Table1,Dropdown2.Selected.Result= ServiceName)
I get the values filters in the gallery, but I only get a few like if the excel has 25 rows for a selection I get only 16 in the gallery, for another selection the excel has 75 rows and the gallery displays only 25.
Cant figure what I am missing. Any pointers?