
Announcements
Hello , I am new to SharePoint and automate . I am working one flow that send a mail to user when new record added in SharePoint . that mail include that link to the item . everything working fine . but link is redirecting to view screen not edit screen. Can we change it for edit screen .when I click on link it should redirect to the edit screen ....
Please help me
Thank you
Hello @Yoursnani ,
yes that is possible, but you need to create the link to your SharePoint item yourself. You cant use the "out of the box" one.
If you want to address an item in a list you can use the Listname and the Item Id in order to reach the edit form.
So in your flow create a variable with the link to your list and add the Item Id in the link like here:
eg.
https://yourSharepoint.sharepoint.com/sites/sitecollection/Lists/Listname/EditForm.aspx?ID=1
And then add the link to your mail with html tags:
<a href="yourLink">Editform Link</a>
This should help!
With regards
Kevin