Forum Discussion
MD1987
Nov 11, 2020Copper Contributor
Help! I need to increase the Attachment size limit in a SharePoint list
Hi everyone, I created a PowerApps to allow users to upload documents directly in a SharePoint list. After all this hard work on the App, I just realised the file size limit for the Attachments ...
- Jun 27, 2021
If you have Excel 2019 or Excel in Microsoft 365, enter the following formula in B1:
=TEXTJOIN(", ",TRUE,IF(ISNUMBER(SEARCH({"Generic Mailbox","Distribution","Non-standard","NSSR"},A1)),{"Shared Mailbox","DL","Corporate Request","Non-Standard Service Request"},""))
This allows for more than one of the search terms in a cell.
Otherwise:
=IFERROR(INDEX({"Shared Mailbox","DL","Corporate Request","Non-Standard Service Request"},MATCH(TRUE,ISNUMBER(SEARCH({"Generic Mailbox","Distribution","Non-standard","NSSR"},A1)),0)),"")
Fill down from B1.
Nov 11, 2020
AFAIK, there is no way you can control this π
MD1987
Nov 13, 2020Copper Contributor
Hi actually found a solution! (was pretty easy :))
The size limit was from PowerApps (SharePoint lists allow attachements up to 250MB by default).
I managed to increase the attachment size limit by going in PowerApps >> selecting the Attachment control >> Advanced settings >> SizeLimit is set to 10MB by default.
I changed the SizeLimit setting to 50MB which is the max for PowerApps at the moment.
But it's more than sufficient for what I am doing.
Cheers!
Mehdi.
The size limit was from PowerApps (SharePoint lists allow attachements up to 250MB by default).
I managed to increase the attachment size limit by going in PowerApps >> selecting the Attachment control >> Advanced settings >> SizeLimit is set to 10MB by default.
I changed the SizeLimit setting to 50MB which is the max for PowerApps at the moment.
But it's more than sufficient for what I am doing.
Cheers!
Mehdi.
- Kevin_Moore_alt255Feb 10, 2022Copper Contributorthanks! my issue exactly! however. I was able to set mine to 99MB. Tried 100MB but that was too high.