Hello,
I am trying to lookup a SharePoint list attachment column and set a field's visibility accordingly but the below code is not working and throwing "The specific column is not accessible in this context". I tried with 'Has Attachments' too but getting different errors.
If(IsBlank(""),
With(
{
wRecord:
LookUp('SharePoint List', ID = BrowseGallery1.Selected.ID)
},
If(IsBlank(wRecord.Attachments), true, false)
)
)
All other columns work perfectly without any issues. How to get this fixed?
Please help.