Forum Discussion
How to Patch a SharePoint Hyperlink Field using PowerApps
- AnonymousDec 16, 2017
I read elsewhere that there may not be support for writing to the SharePoint Hyperlink or Photo column type, so I worked around this by just using a regular text column. Add I wanted was to enable the user to be able to get to a URL from a PowerApps for where there would be documentation they needed to read. I simple hid the field on the PowerApp form in display mode and use a button control along with the OnSelect formula:
Launch(the_Field_name_with_the_URL)
By default it launches the link in a new browser tab which is perfect for me.
I read elsewhere that there may not be support for writing to the SharePoint Hyperlink or Photo column type, so I worked around this by just using a regular text column. Add I wanted was to enable the user to be able to get to a URL from a PowerApps for where there would be documentation they needed to read. I simple hid the field on the PowerApp form in display mode and use a button control along with the OnSelect formula:
Launch(the_Field_name_with_the_URL)
By default it launches the link in a new browser tab which is perfect for me.