HI Everyone,
I have a toggle in my PowerApps.
I have a dropdown with Items Choices([@Top_Risk_Controls].Controltype)
Based on my toggle selection I want to display me dropdown list
like if toggle is selected (Yes) I want the drop-down should be selected as Compensatory
If it is not checked (No) I want to display all of the dropdown values in that dropdown
I tried to change the items property and Dsi as below but it didn't worked
If(DataCardValue98.Value,({Value: "Compensatory"}),
Choices([@Top_Risk_Controls].Controltype)
)
Could anyone please let me know how will I do it