Forum Discussion
dbolumar
Aug 06, 2024Copper Contributor
MSList - SharePoint - Issue with lookup fields in Board view [object Object]
Dear community, I am facing an issue when trying to show the value of a lookup column in MS-Lists Board view. I have seen many related topics in the forum but haven't found the solution. Basi...
dbolumar
Aug 12, 2024Copper Contributor
Dear all,
After some googling, chatGPT research and testing, the following code, replacing the previous line in bold, can resolve the issue:
"txtContent": "=if ([$KitProvider] == '', '–', [$KitProvider.lookupValue])
However, over the course of the MS-List development I had used this many times and had not worked previously (including refreshing the page several times)... So, I can't answer why it is finally working (but it is 🙂)
Hope this is helpful to others,
Kind regards,
David.
After some googling, chatGPT research and testing, the following code, replacing the previous line in bold, can resolve the issue:
"txtContent": "=if ([$KitProvider] == '', '–', [$KitProvider.lookupValue])
However, over the course of the MS-List development I had used this many times and had not worked previously (including refreshing the page several times)... So, I can't answer why it is finally working (but it is 🙂)
Hope this is helpful to others,
Kind regards,
David.
- Jax_MNov 19, 2024Copper Contributor
Thank you, you saved me lots of hassle posting this 😁