Forum Discussion
Edit List Item using PowerApps form
- Apr 15, 2024
RenPNW Try setting Item property of form control like this:
If(IsBlank(SharePointIntegration.Selected),First([@Tasks]),SharePointIntegration.Selected)
Where Tasks is the SharePoint list name.
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.
RenPNW Try setting Item property of form control like this:
If(IsBlank(SharePointIntegration.Selected),First([@Tasks]),SharePointIntegration.Selected)
Where Tasks is the SharePoint list name.
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.
- RenPNWApr 15, 2024Copper Contributor
ganeshsanap - Thank you! That worked and saved the day for me! Can I ask another question, is there a book that you recommend that I could read up on functions and creation of formulas for Powerapps forms?
Thanks again, I truly respect your knowledge and your willingness to help is very much appreciated!
Ren
- ganeshsanapApr 15, 2024MVP
Check this Microsoft official documentation where you can find information about all Power Apps functions: Formula reference - Power Apps
Please consider giving a Like if my post helped you in any way.