I have a series of dependent drop downdown and comboboxes. Everything appears to be working, except the final combobox appears to show the list, but it appears blank, i.e. white text on a white background. Here is Items field:
Filter(Locations, Region_Choice = CustRegionValue.Selected.Result)
I have a sharepoint list that is being used to show which locations are assigned to which region.
The result below should be that if I choose APAC for the Region, it shows Asian countries and If I choose EMEA, it shows European countries. As you can see from the screenshots, the list changes in length depending on the region, but everything is "blank".


I've checked the colors, the background is white, the text is black. There are no errors. If I change the items in the lookup list, the length of the Customer location field changes.
By contrast, This code: Distinct(Filter(Locations, Title = CustCoValue.Selected.Value), Region_Choice) works to give me a different set of region choices based on the "title" choice. I've tried adding "Distinct" to this code: Filter(Locations, Region_Choice = CustRegionValue.Selected.Result), but the "blank" results are the same.
Any suggestions?