1

On my home screen in Powerapps, I have 8 buttons. Each button states a category. What I want is that by selecting a certain button it makes the value automatically be filled in on the dropdown field of categories on the next page.

enter image description hereenter image description here

I have already added this code to the on select function of the buttons: Navigate(Screen4);; Set(value; "Buttonname"). I have also set the default value of the category field to this value. But nothing happens.

1 Answers1

0

You will also have to populate the "DefaultSelectedItems" property in your ComboBox and the way you populate will depend on how the Record of your ComboBox looks like.

It's common that you will have to do something like this for the "DefaultSelectedItems":

DefaultSelectedItems: {Value:variable} //in your case variable will be value
Murilo Santana
  • 615
  • 1
  • 7
  • 13