Hi @Franvala22 ,
Do you want to make the third dropdown auto-selected bases on the other two dropdowns? Could you please share more about the items in those three dropdowns? What type are the three columns in your SP list, Choices or Text?
If you want an auto-seleted dropdown box, yes the If statement is the right answer. You’ll need to apply below formula to the Default property of the third Dropdown Box.
But for a supplement, you may have to pay attention to the form’s DisplayMode if you are managing a form from SP list, so I have wrote down a quite complete formula, in which I assume the field types of the columns are Text and contents were supposed to be "Cat" and "Dog", Items of Dropdown 2 were ""Big", "Medium" and "Small", and in Dropdown3 items were "Result1", "Result2" and "Result3":
If(Form.Mode=Edit,
If((Dropdown1.Selected.Value=”Cat” && Dropdown2.Selected.Value = “Big”)||
(Dropdown1.Selected.Value=”Cat” && Dropdown2.Selected.Value = “Medium”) ||
(Dropdown1.Selected.Value=”Cat” && Dropdown2.Selected.Value = “Big”),
”Result1”,
(Dropdown1.Selected.Value=”Dog” && Dropdown2.Selected.Value = “Big”)||
(Dropdown1.Selected.Value=”Dog” && Dropdown2.Selected.Value = “Small”),
“Result2”,
“Result3”
)
)
Anyway, in If statement you could list all possibilities and the corresponding result, and the last one is the else result.
Additionally, is there any relationships among the three columns? For example while Cat is selected, only Big and Small could be selected, then only one item could be selected in the dropdown 3?
If it is like my example, you will need to create cascading dropdowns. Then please reference to the official document
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/dependent-drop-down-lists
and other threads like https://powerusers.microsoft.com/t5/Building-Power-Apps/cascading-dropdown-lists/m-p/43123
Since there is not enough info of your scenario, if you have further questions, please let us know.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.