Forum Discussion
Phil_COB
Aug 09, 2019Copper Contributor
Document Lookup Column Link
Hi, all, In SharePoint Online I have a doc library (Reference Docs) and a list (Projects). The goal is for users to choose a doc from a lookup drop-down in Projects, which, when clicked, will...
Vernon Jones
Sep 11, 2019Copper Contributor
Thanks! Great workaround. I have the link working, but are you able to display the name of the file instead of the url? If so, I need a pointer in how to fill in that missing piece.
Alen666
Nov 13, 2020Copper Contributor
I had a second lookup column that was coded with JSON to show a button as the link:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "button",
"txtContent": "Open",
"customRowAction": {
"action": "defaultClick"
}
}
Unfortunately, my internal customer has discovered that they no longer get links 😞
I am assuming that there has been an Evergreen update that has broken the functionality?
I found this thread in my research to find a new solution.