Hi Experts,
I am working on a scenario like 3 dropdowns in landing page which should interact each other based on the data in sharepoint list.

Earlier it was 2 dropdown (text type columns) and it was working fine , now i am adding another dropdown Offer type which is choices type column. So I am Stuck on this dropdown task which is fetching data from collection.
Data Source : SharePoint List
Collection :
ClearCollect
(
offertype,
{Value:"All"}
);
Collect(
offertype,
Sort(Distinct(Choices('Delivery Updates'.'Offer Type'),Value),Value,SortOrder.Ascending)
);
Dropdown :
If(
Dropdown1_1.SelectedText.Value = "All" Or IsBlank(Dropdown1_1.SelectedText),
offertype,
Filter(
offertype,
Value in (Filter('Delivery Updates','Portfolio Head'=Dropdown1_1.SelectedText.Value
)
.'Offer Type') Or Value = "All"
)
)
Issue :

Offer Type column is a choice type column , so i am suspecting this logic in the formula.
Please help to achieve this.
Thanks
DK