Sharepoint Thumbmail not diplaying - Reserved

Anonymous
2023-09-25T13:13:37+00:00

Hi all,

I don't know what has happened. It was working fine and then with no reason stopped. 

I was using powerapps to upload some pictures for the list items into Thumbmail / Image column. It was working fine. Now it doesn't. And even when I try to add it manually from sharepoint lists view it doesn't work either. 
That's what it displays now and at the bottom you can see it was working on previous ones (about 3-4 weeks ago).

I have also noticed change in the link structure, but I haven't changed a single thing. Can somebody explain why is that not working anymore? I needed it urgently today...

![](https://learn-attachment.microsoft.com/api/attachments/3ad7847b-6306-4fef-b79f-6b2983fc2a70?platform=QnA

Microsoft 365 and Office | SharePoint | For business | Other

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

50 answers

Sort by: Most helpful
  1. Anonymous
    2024-10-23T11:56:53+00:00

    Gina please open a technical support request like we did, images are saved as attachments and no longer in the Assets library.

    The same thing happens to us as you since late last week, they have made changes without warning and changes for the worse in Sharepoint.
    
    We continue using it, I don't know why they want to end it.
    
    If there are no tickets there are no resources to resolve, this is how Microsoft works
    

    Was this answer helpful?

    6 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2024-06-12T16:38:05+00:00

    WHY ISN'T THIS FIXED YET!? IT'S HALFWAY THROUGH 2024 AND THERE STILL ISN'T A SOLUTION FROM MICROSOFT??

    BEING FORCED TO TURN OFF ATTACHMENTS AND RELOAD ALL OF THEM OR HAVING TO COMPLETELY REWRITE EXISTING CODE TO ACCOMMODATE A ONE YEAR OLD APP IS NOT A SOLUTION.

    Was this answer helpful?

    5 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2024-01-22T06:42:56+00:00

    Hi all,

    I use this formatting. I look forward to Microsoft solving the problem :)

    {
      "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
      "elmType": "div",
      "style": {
        "display": "=if(@currentField,'block','none')",
        "overflow": "hidden",
        "margin": "8px auto -3px -4px",
        "cursor": "pointer"
      },
      "children": [
        {
          "elmType": "img",
          "attributes": {
            "src": "=getThumbnailImage(@currentField, 200, 200)"
          },
          "style": {
            "position": "relative",
            "top": "50%",
            "margin-top": "10px",
            "width": "200px"
          }
        }
      ]
    }
    

    Was this answer helpful?

    4 people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2024-01-02T19:10:08+00:00

    It's wild that MSOFT hasn't fixed this yet. Here's the formatting I used to overcome this without nuking the attachments ability. I used an if statement to determine whether the image column has the "Reserved" string. Of course, replacing "siteurl", "subsite", and "ListName" in the URL string.

    {
      "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
      "elmType": "div",
      "children": [
        {
          "elmType": "img",
          "attributes": {
            "src": "=if(indexOf(@currentField.fileName, 'Reserved' ) == 0,'https://siteurl.sharepoint.com/sites/subsite/Lists/ListName/Attachments/'+[$ID]+'/'+@currentField.fileName, @currentField.serverRelativeUrl"
          },
          "style": {
            "position": "relative",
            "top": "50%",
            "left": "10%",
            "margin-top": "10px",
            "width": "200px"
          }
        }
      ]
    }
    

    Was this answer helpful?

    4 people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2023-09-28T10:59:23+00:00

    Also having this issue, a list that was working perfectly fine before will no longer properly allow image uploads.

    Have tried uploading images via:

    1. SharePoint List - Edit Item
    2. SharePoint List - Edit in Grid View
    3. New MS Lists - Edit Item
    4. New MS Lists - Edit in Grid View

    As seen in Rafals screenshots the images are going up with "broken" thumbnails and the words "Reserved_ImageAttachment". If you click on the broken thumbnail the image will open up, but it doesnt display in the list and it won't display in linked powerapps.

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments