hello , i have one textinput named txtInputControl_113, and one button A for create collection for empty item for gallery ,
after user input something in gallery "Gallery3_2" , click button B , the data will save to shareponit list A , txtInputControl_113 is used for show the user's manager , and this value will save to the column "Manager "in sharepoint list A, so i will write button A code like below :
Collect(colTemp333,
{ Title: "",
Manager:Office365Users.ManagerV2(User().Email).mail}
)
and txtInputControl_113 code :
ThisItem. Manager
and button B code :
ForAll(
Gallery3_2.AllItems,
Patch(
LIST A,
Defaults(LIST A),
{
Title: txtInputControl_92.Text,
Manager:txtInputControl_113.Text}))
then i test , the textinputcontrol _113 show OK in powerapps , then i click button B , i see title has data , but No data in manager column in sharepoint . also i changged button B code like below , it also can show well in power apps ,but not save to the text to Manager column in sharepoint list
ForAll(
Gallery3_2.AllItems,
Patch(
LIST A,
Defaults(LIST A),
{
Title: txtInputControl_92.Text,
Manager:Office365Users.ManagerV2(User().Email).mail}))
please help me