Forum Widgets
Latest Discussions
Intermittent failures when creating new libraries in modern SharePoint
Hi everyone, I’m seeing an issue in our modern SharePoint Online site collection where creating new document libraries has started failing. This site has worked normally for years, but over the past week, most library creation attempts haven't worked. 1) The page briefly flashes or glitches during the creation process. and 2) A non‑ending spinning wheel when I hit "create" or 3) Creation attempts return “Something's not right.” error page. The failures happen across all subsites, in multiple browsers, and I’m a Site Collection Administrator. No permission changes were made recently. Has anyone seen similar intermittent library creation failures in a modern site collection, or know what might cause this kind of inconsistent behavior? Any guidance would be appreciated. Thanks! MeaganMeaganUTSWJan 21, 2026Copper Contributor24Views0likes0CommentsAutomated upload competing with users who have a file open in Co-authoring mode
This behavior began approximately mid-December. An automated process uploading/overwriting a file located in SharePoint online was constantly receiving errors when executing. We ran through several scenarios for troubleshooting but in the end, we had found that a user would open the file and leave it open in the background through the working day. This behavior produced some co-authoring lock on the file where people could get in and work on the file at the same time but locked out the automated process that would upload a new version of the file regularly. We fixed the behavior after consulting with the people who were referencing the file, they were gathering data from it and were not updating it in any way. So, we broke the permission inheritance for this file and set it up to be read-only for all users but the process that was uploading the file. This allowed the people to reference the file and undid the locking behavior that we had observed. Now, before the middle of December, this locking mechanism didn't exist. Users could have the file open in edit mode and our automated process to update the file was able to upload and overwrite at the same time without issues. Has anyone else observed this behavior within the last few months? We didn't open up a ticket with Microsoft to get an official answer if something new was perhaps implemented and we're curious if anyone has opened a ticket regarding this behavior. Also, I briefly look through the message center and couldn't find any changes in there that seemed to be related to this change by their titles. The error that was seen from the automated process was: The remote server returned an error: (423) Locked. Any input appreciated - I am definitely curious to hear if others are observing this as well.10Views0likes0CommentsPromotedState does not update anymore
I wish to update the promoted status to 0 (page), 1 (unpublished news) or 3 (published news). I was always doing this via SharePoints column formatting. See .json column formatting below. This worked perfectly fine until about this week. Now it doesn't seem to work anymore. Now I tried updating the PromotedState also via PowerAutomate. This also doesn't seem to work... How should I now change the PromotedState. Does someone have any clue how I can update the PromotedState or why the column formatting way of wokring, suddently doesn't work anymore? The json code for column formatting. { "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", "elmType": "div", "style": { "flex-wrap": "nowrap", "display": "flex", "flex-direction": "row" }, "children": [ { "elmType": "div", "txtContent": "=if(@currentField == 0 ,'0 : Page' , if(@currentField == 1, '1 : News (Unpublished)' , if(@currentField == 2 , '2 : News','') ) )", "style": { "box-sizing": "border-box", "padding": "4px 8px 5px 8px", "display": "flex", "border-radius": "16px", "align-items": "center", "overflow": "hidden", "margin": "4px 4px 4px 4px", "border": "1px solid" }, "attributes": { "class": "=if(@currentField == 0 ,'ms-fontColor-themePrimary ms-borderColor-themePrimary ms-bgColor-white' , if(@currentField == 1, 'ms-fontColor-themePrimary ms-borderColor-themePrimary ms-bgColor-themeLighter' , if(@currentField == 2 , 'ms-fontColor-white ms-borderColor-themePrimary ms-bgColor-themePrimary','') ) )" } }, { "elmType": "div", "style": { "font-size": "18px", "cursor": "pointer", "padding": "10px", "border-radius": "50%" }, "attributes": { "iconName": "MoreVertical", "class": "ms-fontColor-themePrimary ms-bgColor-themeLighter--hover" }, "customCardProps": { "openOnEvent": "click", "directionalHint": "rightCenter", "isBeakVisible": true, "formatter": { "elmType": "div", "style": { "display": "flex", "flex-direction": "column", "align-items": "flex-start" }, "children": [ { "elmType": "div", "txtContent": "Change to Page (0)", "style": { "padding": "10px 20px 10px 20px", "cursor": "pointer", "width": "200px" }, "attributes": { "class": "ms-bgColor-themeLighter--hover" }, "customRowAction": { "action": "setValue", "actionInput": { "PromotedState": "0" } } }, { "elmType": "div", "txtContent": "Change to unpublished news (1)", "style": { "padding": "10px 20px 10px 20px", "cursor": "pointer", "width": "200px" }, "attributes": { "class": "ms-bgColor-themeLighter--hover" }, "customRowAction": { "action": "setValue", "actionInput": { "PromotedState": "1" } } }, { "elmType": "div", "txtContent": "Change to published news (2)", "style": { "padding": "10px 20px 10px 20px", "cursor": "pointer", "width": "200px" }, "attributes": { "class": "ms-bgColor-themeLighter--hover" }, "customRowAction": { "action": "setValue", "actionInput": { "PromotedState": "2" } } } ] } } } ] } The HTTP SharePoint call to update the PromotedStatus.WYellowJan 21, 2026Brass Contributor10Views0likes0CommentsEdit a SP list column unable to enter data
Hi, I'm trying to edit some data in a column within my SP list. The column type is Choice. The issue is the is not a 'Choice' field. When created it was going to be a Choice field but when I built the Powerapp that is feeding data to this column is has become a lookup field. So in my app the user selects Division and then the wards in the division are available for selection in the Ward field. Sort(Distinct) formula used looking at another SP list SharePoint PowerApp This as caused an issue as I need to edit one some values in the Division and Ward columns in SP. Can I amend the column values to Single line of text, without losing any of the data?? If not is there away I can amend, edit the data??Chris_Clark1968Jan 21, 2026Brass Contributor40Views0likes1CommentIssue: Date picker / calendar icon disappeared from Page Details pane
Hi everyone, I am reaching out to see if anyone else is experiencing a recent issue with the Date field in SharePoint Online. Since yesterday (January 15th), the calendar icon / date picker has disappeared from the Page Details pane when editing properties for News pages. Here are the details of the issue: The Problem: When clicking on a Date column in the Page Details pane, the calendar selector no longer pops up. Manual Entry: It is still possible to type the date manually, but the visual interface is gone. Comparison: Interestingly, the date picker works perfectly fine when using "Edit in grid view" in the Site Pages library. The issue seems specific to the side property pane (Details pane). Browsers tested: I have reproduced the issue on both Microsoft Edge and Google Chrome (latest versions), even after clearing the cache. Is this a known bug following a recent update, or is there a new UI setting I might have missed? Has anyone seen a similar report in the M365 Service Health dashboard? Thanks in advance for your help!Benoit01CJan 21, 2026Copper Contributor65Views0likes2CommentsMicrosoft 365 Purview Logs not showing Export List Events
We recently conducted an audit on our system - as we are part of a regulated industry - and had to clarify exactly which user events are captured in the Unified Audit Log. We did the usual confirmations and provided evidence of events where users add, update, delete items in SharePoint Lists and Libraries, however, we were asked specifically if events for exporting List Items to CSV or Excel were captured in the Log. We performed the usual test and waited for the events to appear in Purview, but to our suprise, there was nothing in the Log to indicate a user exporting to CSV or Excel. Can anyone confirm whether Export to CSV or Excel from a SharePoint List should be captured and is reportable in the Audit Log? This seems to be a massive oversight if these events are not auditable?Matty VasquezJan 21, 2026Copper Contributor54Views0likes1CommentSharepoint site's customized column become 'Read-Only'
We have a SharePoint Intranet that has been in active use for 14+ months. I have a customized column Expiration Date for News Expiry. Recently, all custom columns added to Site Pages (Page Details) or News pages have become read-only immediately after clicking Save. Key points: - Issue occurs for ALL column types (Date, Date & Time, Text, etc.) - Fields are editable for the first time. - As soon as Save is clicked and page or news came to draft status and the field become read-only. - Happens for both Draft and Published pages. - Editing in Site Pages library Grid view still works. - This behavior started recently without any configuration changes. Has anyone else experienced this?Sangeeta1821Jan 21, 2026Copper Contributor24Views0likes1CommentMicrosoft Lists, bad links at pictures
About a year ago, I created a list in Microsoft Lists and filled a "Picture" column with photos. It's now located at https://lists.live.com/. The images stopped displaying in March 2025 and several times before that. Only a placeholder image with an ID (e.g., "https://learn-attachment.microsoft.com/api/attachments/5a9a22e9-7005-4772-a54f-9ca6434db3bb?platform=QnA") is shown. The problem occurs in the browser (Chrome), in the Lists desktop application, and in the Android app. I've tried it on three PCs and two mobile devices, and the problem appears the same everywhere. I suspect there's something wrong with the link between the image in the list and the Microsoft server. How can this problem be solved? When clicking on a corrupt picture/link I end in a new browser tab showing this: { "error": { "code": "invalidRequest", "message": "Invalid request" } }Patrick_211Jan 21, 2026Copper Contributor36Views0likes1CommentHow can I rename a library in SharePoint?
Due to some testing with a failing copy flow, I have discovered that I need to rename a few libraries to get the flow to work properly with the requirements my clients have settled on. Is it possible to rename a library? I also need to edit the Web Address in List Information.jenbaier81Jan 20, 2026Copper Contributor35KViews0likes6Comments
Resources
Tags
- SharePoint Online18,200 Topics
- Document Library3,198 Topics
- Lists3,120 Topics
- Sites2,587 Topics
- admin2,238 Topics
- sharepoint server2,041 Topics
- Permissions1,977 Topics
- files1,713 Topics
- developer1,597 Topics
- microsoft lists1,564 Topics