HI @jjasper ,
Do you only want the first Dropdown to show unique setting column value (RH or LTC) rather than repeated values?
Based on the needs that you mentioned, I think the GroupBy function or Distinct function both could achieve your needs.
I have made a test on my side, please take a try with the following worlaround:
Set the Items property of the first Dropdown to following:
GroupBy('YourDataSource', "SettingColumn", "GroupData")
then display the SettingColumn value within the Dropdown control.
Or
Set the Items property of the first Dropdown to following:
Distinct('YourDataSource', SettingColumn)
More details about GroupBy function and Distinct function in PowerApps, please check the following article:
GroupBy function and Distinct function
Best regards,