Hi @Anonymous ,
Could you please share a bit more about the data structure of your SP list data source?
Could you please show more details about the Items property of the dropdown #1? How do you loop up to your SP list within your dropdown #1?
I have made a test on my side, please take a try with the following workaround:


Set the OnVisible property of the first screen of your app to following:
ClearCollect(
Dropdown2Collection,
{Customer_x0020_Name: Blank()},
'20190211_case5'.'Customer Name'
);
ClearCollect(
Dropdown3Collection,
{Title: Blank()},
'20190211_case5'.Title
)
On your side, you should type the following formula:
ClearCollect(
Dropdown2Collection,
{Field2: "None"},
'YourSPList'.Field2
);
ClearCollect(
Dropdown3Collection,
{Field3: "None"},
'YourSPList'.Field3
)
Note: The Field2 and Field3 represents the column (of your SP list) you want to display within your Dropdown #2 and Dropdown #3.
Set the Items property of the Dropdown #1 to following:
'20190211_case5'.'Customer Name'
On your side, you should type:
'YourSPList'.Column1
Set the Items property of the Dropdown #2 to following:
Dropdown2Collection
Set the Items property of the Dropdown #3 to following:
Dropdown3Collection
Best regards,