Forum Discussion
KevBel
Jul 18, 2023Copper Contributor
Displaying DocLib File URL Path in Column
Good day, Using SharePoint Online (modern) and set up a new document library called DOCLIB1. There are two folders in the library called FOLDER1 and FOLDER2. FILE1.TXT and FILE2.TXT are located wi...
- Jul 18, 2023
Hi KevBel,
you could apply the following json formatting to your "Path" column{ "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", "elmType": "div", "txtContent": "=[$FileRef]" }
You will get a view like thisIf you don't want the path to your document library to be displayed ("/sites/MyAppPage/CopyLib/" in my example), then use this json
{ "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", "elmType": "div", "txtContent": "=replace([$FileRef],'/sites/MyAppPage/CopyLib/','')" }
This will look like this
Best Regards,
Sven
botsauce
May 28, 2025Copper Contributor
This solution is great. Thank you.
I guess tho that I can’t copy the text or see it in the details because it is implemented as formatting.
Is there a way to wrap this solution up into a button that copies the displayed text to the clipboard?
Many thanks in advance!