I have cascading drop downs. The 2nd and 3rd drop downs arent showing the values in the gallery once clicked which I think is because everything is reseting at the same time, so it doesn't yet have the rows it needs to show the correct selection. Any solutions?
Gallery: Gallery3
Form: Emp_Form
Cascade DropDown 1 -LOB_DataCard
Items: Sort('[dbo].[App_ICWO_HCM_Emp_LOB_vps]', LOB_Description)
Default: If( LookUp('[dbo].[App_ICWO_Entry]', ID = varRecord.ID).Request_Type = "PS on Commercial Chargeable" Or
LookUp('[dbo].[App_ICWO_Entry]', ID = varRecord.ID).Request_Type = "PS on Commercial Accountable", "PS", Gallery3.Selected.Resource_LOB_Description)
Cascade DropDown 2 -Title_DropDown
Items: Distinct(Sort(Filter('[dbo].[App_ICWO_HCM_Emp_JobTitle_vps]',LOB_DataCard.SelectedText.Value = LOB_Description), Job_Description), Job_Description)
Default: Gallery3.Selected.Resource_Title
Cascade DropDown 3 -USID_DataCard
Items: Sort( Filter('[dbo].[HCM_Emp]', LOB_DataCard.SelectedText.Value = LOB_Description && Title_DropDown.SelectedText.Result = Job_Description), Empl_Name)
Default: Gallery3.Selected.Resource_Name
Let me know if there is anything else I can provide that would be helpful.