Hello guys, I am encountering an issue with the combo box on the app that I am currently developing using Share point as Data source.
Scenario: I have 2 combo boxes which the combo box 1 is showing the results from Column A correctly. Now with my combobox2, the results should be dependent based from the selected result in combobox1 and this is not happening.
Below is my code in Items Property for combobox2:
Sort(Filter(Distinct('SP Name', ThisItem.'Ticket Number' = DataCardValue24.Selected.Result),Not(IsBlank(Result))),Result)

However, if I use the following code below in my combobox2, it will return the results that I am expecting BUT it will not filter according to the selected value in combobox2:
Sort(Filter(Distinct('SP Name','Test ID'),Not(IsBlank(Result))),Result)

Please advise.
Thank you so much!