SOLVED

Customize library form by Data from Lists.

Copper Contributor

Hello!

 

I have a SharePoint Library to customize form with PowerApps. Some Data are retrieved from Lists. Unfortunately, when I save the app, Data are not recorded in Library row.

 

Please HELP!!!

3 Replies

@Staba91 Can you share more details about your app customizations?

 

  1. How are you fetching list data and using it in library forms?
  2. How are you saving data to library from customized forms?
  3. What type of columns you are updating in library? 

Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

For SharePoint/Power Platform blogs, visit: Ganesh Sanap Blogs

How are you fetching list data and using it in library forms?
==> The target columns are of LookUp type which retrieve data from lists.
Items = 'ListName'

How are you saving data to library from customized forms?
==> Using the SharePointIntegration:
DataSource = [@LibrayName]
OnSave = Set(
SharePointFormMode,
"SubmitForm"
);
SubmitForm(SharePointForm1);
Navigate(
SharePointForm1,
ScreenTransition.None
)

What type of columns you are updating in library?
LookUp type columns

Best regards
best response confirmed by Staba91 (Copper Contributor)
Solution
It's resolved. On Items fiels of each DataCardValue:
Items = Choices([@LibraryName].ListName)
1 best response

Accepted Solutions
best response confirmed by Staba91 (Copper Contributor)
Solution
It's resolved. On Items fiels of each DataCardValue:
Items = Choices([@LibraryName].ListName)

View solution in original post