powerapps

Powerapps: Splitting search text into individual strings, now I need to display on the gallery only items that include one of the strings

流过昼夜 提交于 2019-12-11 02:53:49
问题 I have created a table in powerapps that collects the individual strings from a text input box. The table is working and as users type in the text box it creates new items down the column. Now I am trying to Filter a Gallery to only display items that match any of the values in the table. I am trying to filter by a multi-line text field. If a single word in the block of text matches, I would like it to display. The table will eventually be hidden from view, but as I look at it now, whenever

Filter User email - no delegation

倾然丶 夕夏残阳落幕 提交于 2019-12-11 01:01:28
问题 I'm using powerapps on a sharepoint list datasource. Trying to do a filter based on the current user's email ID on a single line text field in sharepoint. Getting this error, I believe there's 2 errors above. 1) User().Email function itself does not support delegation. 2) '=' operator does not support delegation. For (2), not sure why it's giving an error. '=' operator supposed to support delegation, For (1), I've saved the User() object into a global variable "CurrentUserG" on start. It

Pass a value to another screen

 ̄綄美尐妖づ 提交于 2019-12-04 18:15:43
问题 I have a screen where the user can select an option (not a browse gallery as it does not do what is required). I want to pass the item the user has selected to the pre-made "DetailScreen1" which is used by the browse gallery. I looked at the browse screen but did not see how it does it as the navigate onselect event is just normal navigation. Code: Navigate(DetailScreen1, ScreenTransition.Fade) I want to do something like Navigate(DetailScreen1, ScreenTransition.None {Last(listOfStuff)})