Multiple attachment columns in SharePoint lists

I need to clearly distinguish between investments (this is approval, this proposal, this software, etc.). Is this possible, or does it work only in bulk (attach all files together)?

Thanks,

+7
list attachment sharepoint
source share
3 answers

You can create separate lists for each item that requires an attachment, and then link these lists in the main table.

+2
source share

SharePoint does not support attachment metadata. I would suggest storing attachments in a document library (possibly with content types for approval, suggestions, software, etc.) using the search column of the related item in your list.

+10
source share

There are two options.

  • Add as many attachments that you want to insert into the list column. but you cannot associate metadata with this.
  • Create a document library and use the list search to view the document name. therefore, to some extent, it stores the shared document in the library and simply refers to the one you should use.

Custom code is another one.

+1
source share

All Articles