
Announcements
Trying to use a search field to look up a SharePoint list and return text in a specific column to a text field in my PowerApps
1) Data Source = Draft
2) Lookup text = search.Text
3) return value = Q1 Notes
4) Location to place data = Q1_Notes_1.Text
Below is what i have tried but can't get it to work,
UpdateIf('Draft ', 'Q1 Notes' = search.Text, {Q1_Notes_1.Text: 'Q1 Notes'})
For PowerApps, you could not set the text for control directly, you could bind the value to a variable and then update the variable value.
Here is detail steps:
Set(
Q1_Notes_1Value,
LookUp(
MockDataSource,
SearchField = search.Text
).ReturnField
)Q1_Notes_1ValueBest Regards,
Meekou