posts
I had a requirement to enable Search on clicking on Enter key on a text box or clicking explicitly on the button to trigger the search. Upon investigation and playing around, I discovered the OnChange trigger works well. So that I don’t duplicate logic across two triggers, I wrapped the logic of the search into a hidden button on the form
Referenced the logic into the textbox and icon
On Change referencing button from Textbox On Select from Icon
posts
Refer to the post for detailed overview of the context where the replace is being used.
Bulk Import CSV to SharePoint with Power Automate
Options to Import Large tab delimited Data to SharePoint with Power Automate
Replace New lines split(trim(body(‘Get_file_content’)), decodeUriComponent(’%0A’)) /r/n
Replace tab characters split(item(), decodeURIComponent(’%09’)) /r
Replace carriage return split(item(), decodeURIComponent(’%09’)) /t
posts
Update Title and Description of Library within SharePoint using Power Automate
Now we will see how to update the SharePoint list using the rest api in SharePoint.
Here, I will update the list title & description using the rest api. In the form, I am giving a user the option to provide the old list title, new list title, new list description, and a button.
Method: Patch SiteAddress: Uri = /_api/web/lists/getByTitle(‘variables(‘ListName’)’)