0
votes

I have below items in sharepoint list -

enter image description here

I have added two dropdown in powerapp canvas in first dropdown I am populating Values from Test column. In the 2nd dropdown after selecting Value from 1st dropdown like A or B or C I want to populate Values from the corresponding Columns.

Any help appreciate. Thanks in advance.

1

1 Answers

1
votes

In the Items property of Dropdown2,try something like below:

If(Dropdown1.SelectedText.Value = "A",
     List.A,
     If(Dropdown1.SelectedText.Value = "B",
      List.B,
        List.C))

where List is the SharePoint list