Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
465 views
in Technique[技术] by (71.8m points)

powerapps - Extracting data from combobox filled with items from sharepoint


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Yes this is easily done.

It looks like:

  • You have a Sharepoint list
  • With a Person-type column
  • Then you added a Form control to your PowerApps
  • And now you want to get like, DisplayName or JobTitle from the Combobox.

Because Person-type columns are really record of information, you have to use "dot notation" to get a level deeper.

Try this:

  • Add a Label control to your PowerApp
  • Set its Text proptery to <yourComboboxNameHere>.Selected.DisplayName

In the above example, Selected is the record, DisplayName is the column.

By adding the "." after Selected, you can see all available options.

Example in action:

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...