Good day,
I have to run a flow each day to update datas. When I run them a new Version of the document is always created.
I have around 24 GB of Datas, Each File multiplied by 100.
So I have 1,4 TB of data and my Storage is full.
MY QUESTION: Does anybody know how to delete all old Versions of a File in Sharepoint as it is not possible to set Versions to a lower Number then 100
Thanks
BRGDS
Jan Held
Solved! Go to Solution.
I mean delete with FLOW!!!! not manually
@mardex wrote:Good day,
I have to run a flow each day to update datas. When I run them a new Version of the document is always created.
I have around 24 GB of Datas, Each File multiplied by 100.
So I have 1,4 TB of data and my Storage is full.
MY QUESTION: Does anybody know how to delete all old Versions of a File in Sharepoint as it is not possible to set Versions to a lower Number then 100
Thanks
BRGDS
Jan Held
Hi @mardex,
Please refer to the following steps to delete the old versions of each file in the SharePoint library:
Step 1: Add Get files(properties only) action to get files in the list.
Step 2: Add Send an HTTP request to SharePoint
Method: GET Uri: _api/web/GetFolderByServerRelativeUrl('Dynamic content of Folder Path')/Files('Dynamic content of File name with extension')/Versions
Step 3: Parse JSON, put the body of the previous action into the Content of Parse JSON action, then click the button "Use sample payload" to generate schema to paste the following schema:
{ "type": "object", "properties": { "d": { "type": "object", "properties": { "results": { "type": "array", "items": { "type": "object", "properties": { "__metadata": { "type": "object", "properties": { "id": { "type": "string" }, "uri": { "type": "string" }, "type": { "type": "string" } } }, "CreatedBy": { "type": "object", "properties": { "__deferred": { "type": "object", "properties": { "uri": { "type": "string" } } } } }, "CheckInComment": { "type": "string" }, "Created": { "type": "string" }, "ID": { "type": "integer" }, "IsCurrentVersion": { "type": "boolean" }, "Length": { "type": "string" }, "Size": { "type": "integer" }, "Url": { "type": "string" }, "VersionLabel": { "type": "string" } }, "required": [ "__metadata", "CreatedBy", "CheckInComment", "Created", "ID", "IsCurrentVersion", "Length", "Size", "Url", "VersionLabel" ] } } } } } }
Step 4: Create the other Send an Http request to SharePoint:
Method: DELETE Uri: _api/web/GetFolderByServerRelativeUrl('Dynamic content of Folder Path')/Files('Dynamic content of File name with extension')/Versions(ID from the previous action)
Please have a try, I hope it can help you.
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I mean delete with FLOW!!!! not manually
@mardex wrote:Good day,
I have to run a flow each day to update datas. When I run them a new Version of the document is always created.
I have around 24 GB of Datas, Each File multiplied by 100.
So I have 1,4 TB of data and my Storage is full.
MY QUESTION: Does anybody know how to delete all old Versions of a File in Sharepoint as it is not possible to set Versions to a lower Number then 100
Thanks
BRGDS
Jan Held
To delete old versions, you'll need to use the SharePoint HTTP action and call a SharePoint web service. I can't provide the specifics, but that's the route you'll need to go. Another way to approach this might be to create a new document (based on the old document including metadata) and delete the old one rather than updating the existing documents in your Flow.
thanks, I expected this. So it will be a hell of work for me as a non professional
@ScottShearer wrote:To delete old versions, you'll need to use the SharePoint HTTP action and call a SharePoint web service. I can't provide the specifics, but that's the route you'll need to go. Another way to approach this might be to create a new document (based on the old document including metadata) and delete the old one rather than updating the existing documents in your Flow.
Hi @mardex,
Please refer to the following steps to delete the old versions of each file in the SharePoint library:
Step 1: Add Get files(properties only) action to get files in the list.
Step 2: Add Send an HTTP request to SharePoint
Method: GET Uri: _api/web/GetFolderByServerRelativeUrl('Dynamic content of Folder Path')/Files('Dynamic content of File name with extension')/Versions
Step 3: Parse JSON, put the body of the previous action into the Content of Parse JSON action, then click the button "Use sample payload" to generate schema to paste the following schema:
{ "type": "object", "properties": { "d": { "type": "object", "properties": { "results": { "type": "array", "items": { "type": "object", "properties": { "__metadata": { "type": "object", "properties": { "id": { "type": "string" }, "uri": { "type": "string" }, "type": { "type": "string" } } }, "CreatedBy": { "type": "object", "properties": { "__deferred": { "type": "object", "properties": { "uri": { "type": "string" } } } } }, "CheckInComment": { "type": "string" }, "Created": { "type": "string" }, "ID": { "type": "integer" }, "IsCurrentVersion": { "type": "boolean" }, "Length": { "type": "string" }, "Size": { "type": "integer" }, "Url": { "type": "string" }, "VersionLabel": { "type": "string" } }, "required": [ "__metadata", "CreatedBy", "CheckInComment", "Created", "ID", "IsCurrentVersion", "Length", "Size", "Url", "VersionLabel" ] } } } } } }
Step 4: Create the other Send an Http request to SharePoint:
Method: DELETE Uri: _api/web/GetFolderByServerRelativeUrl('Dynamic content of Folder Path')/Files('Dynamic content of File name with extension')/Versions(ID from the previous action)
Please have a try, I hope it can help you.
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi there,
Is it possible to set this up to on-demand remove all of the previous versions in a selected folder only, rather than daily automation for the whole library?
I would like to be able to select a project folder within a library once that project is completed, delete all the previous versions, keeping only the final files and then mark all files in that folder as read only so that no new versions are created if people then go and look at the files as reference for another project.
Many thanks
Chris
Many thanks
This is exactly what I am looking for, do you have more details you can provide on this or a video you can point me to on how to create this flow? When I create the Uri there is no dynamic content to choose from. It seems some steps are missing. What trigger do you use? I tried using scheduled once a week. Also is there a way to keep say 5 versions?
This is what i want to do. but the things is I will exceed the 500 Apply to each limitation as I have a lot of files in a folder + subfolders. is there anyone can help?
PnP PowerShell should become your fried if it is not already. There a ton of good resources available to answer you requirements or get you headed in the right direction. Salaudeen Rajack at https://www.sharepointdiary.com/ is an outstanding resource. He has been very generous in sharing many PnP scripts to accomplish a task, and all of them can be adjusted to do more or less, or become very granular.
Hop over to https://www.sharepointdiary.com/ and search for "delete versions" or Google it. I've modified the available scripts for date ranges, file types, selection by user, operations on specific folders and more.
First thing I did was to set max versions to the minimum of 100 in the SharePoint admin center. 100 is as low as they allow you to go. It would be fantastic if MS would reduce the number to something more reasonable.
Next thing was to delete all version of any image file (JPG, TIFF etc.) There is a script at https://www.sharepointdiary.com/ to delete all versions. Just modify it for the file type or file extension you want to delete all versions for.
Next verify you users are okay to retain 1, 2, 5, 10 versions of an MS Office file type or extension, then modify and run the available script to delete all but "x" number of versions for that file type. I got rid of many PPTX, DOCX and XLSX version. Some of the PPTX and DOCX are huge files.
Use use an image size reducing app to shrink your pictures, then go back and delete the picture versions. Irfanview is a great free tool for shrinking images.
Have your users reduce the size their PowerPoint files. The go back and delete old versions again with PS PnP.
Once you have your PS scripts tuned they way you need them, schedule them to run daily/weekly/monthly.
SharePoint Flows are good but can be a challenge to get right. For me, PowerShell scripting and automation is the way to go. Much more intuitive and flexible. There isn't too much you cannot accomplish with PS.
Oh yeah, keep your Recycle Bin and Secondary Recycle Bin emptied on a schedule. Yes, there is a PS script for that.
I recovered 700+ GB by doing the things listed above, and significantly reduced my personal workload by automating with PS.
I was asked where I found the max versions setting.
Document library settings cog in upper-right > Library Settings > More Library settings > Versioning settings.
Additional info can be found at SharePoint Online: Set Versioning Limit using PowerShell - SharePoint Diary
Hi I am running into an issue when following this example. When i create a library with a few files for testing it worked. When i revert back to the main task of deleting old versions from a library with subfolders i keep being told file error. Am i missing a trick with a setting when it is for a large library?
Many thanks for you help
Assuming you are trying to delete versions with PowerShell and PnP from a library with more than 5k items... There is a limit to how many items that can be retrieved at one time. The -PageSize flag to limit the number of items retrieved per-page to less than the 5000-item limit enforced by SharePoint, which cannot be changed. I usually limit to 2k items per page, which works 99% of the time. In rare cases where 2k still causes problems I drop it to 500.
Here is a basic example script that deletes all versions for JPG images, modified within the last 60-days, and edited by a particular user.
DO NOT test this on a production site.
I AM NOT responsible for your deleted data, production or otherwise.
# Much credit for this goes to sharepointdiary.com
# https://www.sharepointdiary.com/2018/05/sharepoint-online-delete-version-history-using-pnp-powershell.html
# This script will delete ALL versions of JPG files and leave the current file.
#Declare Variables
# Change "yourdomain" to your actual O365 domain
# Change "yoursite" to your actual SharePoint site name
$SiteURL = "https://yourdomain.sharepoint.com/sites/yoursite"
# If neccessary change "Documents" to the actual name of your library in your site
# "Documents is created by default unless you changed the name during intial site creation
$ListName="Documents"
# Set number of days to query. You can use this to limit how far back to query. Helpful for huge libraries years old.
# Or omit it altogether to check every file for versions. Takes a LONG TIME with 500K+ JPGs.
# If you omit the number of days variable, you must also remove "-and ($_.FieldValues.Last_x0020_Modified.ToString() -gt $AfterDate) `" from the WHERE filter below.
$AfterDate = (Get-date).AddDays(-60).ToString('yyyy-MM-dd')
# Counters used for different tasks
$TotalFiles = 0
$TotalVerDeleted = 0
$CurrentCount = 0
$MatchedJpg = 0
# Connect to PnP Online
Connect-PnPOnline -Url $SiteURL -Interactive
#Get the Context
$Ctx= Get-PnPContext
# Get the List
# List items are counted for the first progress bar
$List = Get-PnPList -Identity $ListName
# Initialize a counter for the first progress bar
$global:counter = 0;
# Get All Items from the List - Include only 'File' object List Items, with 'jpg' extension, after a specified date, and last Edited by a specific user
# Change "someusernameemail*" to a unique username, of someone that edited the JPGs.
# For example, I compress thousands of JPGs so my email address will be the current Editor and I only look for versions to delete of the files I edited.
# You can always remove the Editor filter to check all JPGs in the library for version to delete.
# Set the -PageSize to avoid query problems if your library has more than 5k items.
# Show progress bar as list items are retrieved 2000 items at a time
$ListItems = Get-PnPListItem `
-List $ListName `
-PageSize 2000 `
-ScriptBlock { `
Param($items) $global:counter += $items.Count; `
Write-Progress -Id 0 `
-Activity "Retrieving $ListName list to check for JPG files edited since $AfterDate." `
-Status "Retrieved $global:Counter of $($List.ItemCount) Items from the $ListName list." `
-PercentComplete ($global:Counter / ($List.ItemCount) * 100);} | `
Where {`
($_.FileSystemObjectType -eq "File") `
-and ($_.Fieldvalues["File_x0020_Type"] -eq "jpg") `
-and ($_.FieldValues.Last_x0020_Modified.ToString() -gt $AfterDate) `
-and ($_.FieldValues['Editor'].Email -like "someusernameemail*")}
#Number of JPGs that matched the "where" criteria
$MatchedJpg = $ListItems.Count
ForEach ($Item in $ListItems)
{
$CurrentCount = $CurrentCount + 1
#Get File Versions
$File = $Item.File
$Versions = $File.Versions
$Ctx.Load($File)
$Ctx.Load($Versions)
$Ctx.ExecuteQuery()
$VersionsCount = $Versions.Count
Write-Progress -Id 1 -ParentID 0 `
-Activity "Checking $MatchedJpg files for Versions to delete." `
-Status "Checking file $CurrentCount of $($ListItems.Count)." `
-PercentComplete ($CurrentCount / ($ListItems.Count) * 100)
If($VersionsCount -gt 0)
{
#Increment counter for total number of files found with Versions
$TotalFiles = $TotalFiles + 1
Write-host -f Cyan "`t $TotalFiles Files with Versions to delete so far."
Write-host -f White "`t Deleting" $Versions.Count "version(s) of:" $File.Name
For($i=0; $i -lt $Versions.Count; $i++)
{
$TotalVerDeleted = $TotalVerDeleted + 1
write-host -f Magenta "`t Deleting Version:" $Versions[0].VersionLabel
$Versions[0].DeleteObject()
}
$Ctx.ExecuteQuery()
Write-Host -f White "`t Deleted" $VersionsCount "Version(s) of:" $File.Name "`n"
}
}
Write-Host -f Cyan `t "Total Versions deleted:" $TotalVerDeleted
Disconnect-PnPOnline
Rookie move on my part. Replied to myself. ¯\_(ツ)_/¯
Assuming you are trying to delete versions with PowerShell and PnP from a library with more than 5k items... There is a limit to how many items that can be retrieved at one time. The -PageSize flag to limit the number of items retrieved per-page to less than the 5000-item limit enforced by SharePoint, which cannot be changed. I usually limit to 2k items per page, which works 99% of the time. In rare cases where 2k still causes problems I drop it to 500.
Here is a basic example script that deletes all versions for JPG images, modified within the last 60-days, and edited by a particular user.
DO NOT test this on a production site.
I AM NOT responsible for your deleted data, production or otherwise.
# Much credit for this goes to sharepointdiary.com
# https://www.sharepointdiary.com/2018/05/sharepoint-online-delete-version-history-using-pnp-powershell.html
# This script will delete ALL versions of JPG files and leave the current file.
# DO NOT run it on a production site/library if you are required to retain some number of previous versions for whatever reason.
#Declare Variables
# Change "yourdomain" to your actual O365 domain
# Change "yoursite" to your actual SharePoint site name
$SiteURL = "https://yourdomain.sharepoint.com/sites/yoursite"
# If neccessary change "Documents" to the actual name of your library in your site
# "Documents is created by default unless you changed it during intial site creation
$ListName="Documents"
# Set number of days to query. You can use this to limit how far back to query. Helpful for huge libraries years old.
# Or omit it altogether to check every file for versions. Takes a LONG TIME with 500K+ JPGs.
# If you omit the number of days variable, you must also remove "-and ($_.FieldValues.Last_x0020_Modified.ToString() -gt $AfterDate) `" from the WHERE filter below.
$AfterDate = (Get-date).AddDays(-60).ToString('yyyy-MM-dd')
# Counters used for different tasks
$TotalFiles = 0
$TotalVerDeleted = 0
$CurrentCount = 0
$MatchedJpg = 0
# Connect to PnP Online
Connect-PnPOnline -Url $SiteURL -Interactive
#Get the Context
$Ctx= Get-PnPContext
# Get the List
# List items are counted for the first progress bar
$List = Get-PnPList -Identity $ListName
# Initialize a counter for the first progress bar
$global:counter = 0;
# Get All Items from the List - Include only 'File' object List Items, with 'jpg' extension, after a specified date, and last Edited by a specific user
# Change "someusernameemail*" to a unique username, of someone that edited the JPGs.
# For example, I compress thousands of JPGs so my email address will be the current Editor and I only look for versions to delete of the files I edited.
# You can always remove the Editor filter to check all JPGs in the library for version to delete.
# Set the -PageSize to avoid query problems if your library has more than 5k items.
# Show progress bar as list items are retrieved 2000 items at a time
$ListItems = Get-PnPListItem `
-List $ListName `
-PageSize 2000 `
-ScriptBlock { `
Param($items) $global:counter += $items.Count; `
Write-Progress -Id 0 `
-Activity "Retrieving $ListName list to check for JPG files edited since $AfterDate." `
-Status "Retrieved $global:Counter of $($List.ItemCount) Items from the $ListName list." `
-PercentComplete ($global:Counter / ($List.ItemCount) * 100);} | `
Where {`
($_.FileSystemObjectType -eq "File") `
-and ($_.Fieldvalues["File_x0020_Type"] -eq "jpg") `
-and ($_.FieldValues.Last_x0020_Modified.ToString() -gt $AfterDate) `
-and ($_.FieldValues['Editor'].Email -like "someusernameemail*")}
#Number of JPGs that matched the "where" criteria
$MatchedJpg = $ListItems.Count
ForEach ($Item in $ListItems)
{
$CurrentCount = $CurrentCount + 1
#Get File Versions
$File = $Item.File
$Versions = $File.Versions
$Ctx.Load($File)
$Ctx.Load($Versions)
$Ctx.ExecuteQuery()
$VersionsCount = $Versions.Count
Write-Progress -Id 1 -ParentID 0 `
-Activity "Checking $MatchedJpg files for Versions to delete." `
-Status "Checking file $CurrentCount of $($ListItems.Count)." `
-PercentComplete ($CurrentCount / ($ListItems.Count) * 100)
If($VersionsCount -gt 0)
{
#Increment counter for total number of files found with Versions
$TotalFiles = $TotalFiles + 1
Write-host -f Cyan "`t $TotalFiles Files with Versions to delete so far."
Write-host -f White "`t Deleting" $Versions.Count "version(s) of:" $File.Name
For($i=0; $i -lt $Versions.Count; $i++)
{
$TotalVerDeleted = $TotalVerDeleted + 1
write-host -f Magenta "`t Deleting Version:" $Versions[0].VersionLabel
$Versions[0].DeleteObject()
}
$Ctx.ExecuteQuery()
Write-Host -f White "`t Deleted" $VersionsCount "Version(s) of:" $File.Name "`n"
}
}
Write-Host -f Cyan `t "Total Versions deleted:" $TotalVerDeleted
Disconnect-PnPOnline
Hi! [EDITED]
After a lot of struggle I found a missing "'" :p.
solved!
Method: DELETE Uri: _api/web/GetFolderByServerRelativeUrl('Dynamic content of Folder Path')/Files('Dynamic content of File name with extension')/Versions(ID from the previous action)
This flow is just perfect... but i got a 401 issue on deleting :
{
"status": 401,
"message": "401 UNAUTHORIZED\r\nclientRequestId: 67076abb-1ed1-47db-acef-e9df883f2a3e\r\nserviceRequestId: e421a0a0-90aa-6000-414e-4a752a53cc81",
"source": "https://XXXXXXXXX.sharepoint.com/sites/XXXXXXXX/')/Files('XXXXXXXX.pptx')/Versions(512)",
"errors": []
}
I'm the owner of the Sharepoint... anf of the sharepoint librairy... 😥
Thanks for your advices !
This works awesome for jpg files. How can I make it do all files in a site not just jpg files?
Is there a way to apply this only to files which haven't been used vor let's say 100 days?
Thanks!
Can anyone help me build a flow with this exact function but for OneDrive for Business?
hello, I'm following this example but....
the result of the evaluation of 'foreach' expression '@body('Analize_JSON')?['properties']?['d']?['properties']?['results']' is of type 'Null'. The result must be a valid array.
Are you attending the Microsoft Power Platform Conference 2023 in Las Vegas? If so, we invite you to join us for the MPPC's Got Power Talent Show! Our talent show is more than a show—it's a grand celebration of connection, inspiration, and shared journeys. Through stories, skills, and collective experiences, we come together to uplift, inspire, and revel in the magic of our community's diverse talents. This year, our talent event promises to be an unforgettable experience, echoing louder and brighter than anything you've seen before. We're casting a wider net with three captivating categories: Demo Technical Solutions: Show us your Power Platform innovations, be it apps, flows, chatbots, websites or dashboards... Storytelling: Share tales of your journey with Power Platform. Hidden Talents: Unveil your creative side—be it dancing, singing, rapping, poetry, or comedy. Let your talent shine! Got That Special Spark? A Story That Demands to Be Heard? Your moment is now! Sign up to Showcase Your Brilliance: https://aka.ms/MPPCGotPowerSignUp Deadline for submissions: Thursday, Sept 28th How It Works: Submit this form to sign up: https://aka.ms/MPPCGotPowerSignUp We'll contact you if you're selected. Get ready to be onstage! The Spotlight is Yours: Each participant has 3-5 minutes to shine, with insightful commentary from our panel of judges. We’re not just giving you a stage; we’re handing you the platform to make your mark. Be the Story We Tell: Your talents and narratives will not just entertain but inspire, serving as the bedrock for our community’s future stories and successes. Celebration, Surprises, and Connections: As the curtain falls, the excitement continues! Await surprise awards and seize the chance to mingle with industry experts, Microsoft Power Platform leaders, and community luminaries. It's not just a show; it's an opportunity to forge connections and celebrate shared successes. Event Details: Date and Time: Wed Oct 4th, 6:30-9:00PM Location: MPPC23 at the MGM Grand, Las Vegas, NV, USA
The Reading Dynamics 365 and Power Platform User Group is a community-driven initiative that started in September 2022. It has quickly earned recognition for its enthusiastic leadership and resilience in the face of challenges. With a focus on promoting learning and networking among professionals in the Dynamics 365 and Power Platform ecosystem, the group has grown steadily and gained a reputation for its commitment to its members! The group, which had its inaugural event in January 2023 at the Microsoft UK Headquarters in Reading, has since organized three successful gatherings, including a recent social lunch. They maintain a regular schedule of four events per year, each attended by an average of 20-25 enthusiastic participants who enjoy engaging talks and, of course, pizza. The Reading User Group's presence is primarily spread through LinkedIn and Meetup, with the support of the wider community. This thriving community is managed by a dedicated team consisting of Fraser Dear, Tim Leung, and Andrew Bibby, who serves as the main point of contact for the UK Dynamics 365 and Power Platform User Groups. Andrew Bibby, an active figure in the Dynamics 365 and Power Platform community, nominated this group due to his admiration for the Reading UK User Group's efforts. He emphasized their remarkable enthusiasm and success in running the group, noting that they navigated challenges such as finding venues with resilience and smiles on their faces. Despite being a relatively new group with 20-30 members, they have managed to achieve high attendance at their meetings. The group's journey began when Fraser Dear moved to the Reading area and realized the absence of a user group catering to professionals in the Dynamics 365 and Power Platform space. He reached out to Andrew, who provided valuable guidance and support, allowing the Reading User Group to officially join the UK Dynamics 365 and Power Platform User Groups community. One of the group's notable achievements was overcoming the challenge of finding a suitable venue. Initially, their "home" was the Microsoft UK HQ in Reading. However, due to office closures, they had to seek a new location with limited time. Fortunately, a connection with Stephanie Stacey from Microsoft led them to Reading College and its Institute of Technology. The college generously offered them event space and support, forging a mutually beneficial partnership where the group promotes the Institute and encourages its members to support the next generation of IT professionals. With the dedication of its leadership team, the Reading Dynamics 365 and Power Platform User Group is poised to continue growing and thriving! Their story exemplifies the power of community-driven initiatives and the positive impact they can have on professional development and networking in the tech industry. As they move forward with their upcoming events and collaborations with Reading College, the group is likely to remain a valuable resource for professionals in the Reading area and beyond.
As the sun sets on the #SummerofSolutions Challenge, it's time to reflect and celebrate! The journey we embarked upon together was not just about providing answers – it was about fostering a sense of community, encouraging collaboration, and unlocking the true potential of the Power Platform tools. From the initial announcement to the final week's push, the Summer of Solutions Challenge has been a whirlwind of engagement and growth. It was a call to action for every member of our Power Platform community, urging them to contribute their expertise, engage in discussions, and elevate collective knowledge across the community as part of the low-code revolution. Reflecting on the Impact As the challenge ends, it's essential to reflect on the impact it’s had across our Power Platform communities: Community Resilience: The challenge demonstrated the resilience of our community. Despite geographical distances and diverse backgrounds, we came together to contribute, learn, and collaborate. This resilience is the cornerstone of our collective strength.Diverse Expertise: The solutions shared during the challenge underscore the incredible expertise within our community. From intricate technical insights to creative problem-solving, our members showcased their diverse skill sets, enhancing our community's depth.Shared Learning: Solutions spurred shared learning. They provided opportunities for members to grasp new concepts, expand their horizons, and uncover the Power Platform tools' untapped potential. This learning ripple effect will continue to shape our growth. Empowerment: Solutions empowered community members. They validated their knowledge, boosted their confidence, and highlighted their contributions. Each solution shared was a step towards personal and communal empowerment. We are proud and thankful as we conclude the Summer of Solutions Challenge. The challenge showed the potential of teamwork, the benefit of knowledge-sharing, and the resilience of our Power Platform community. The solutions offered by each member are more than just answers; they are the expression of our shared commitment to innovation, growth, and progress! Drum roll, Please... And now, without further ado, it's time to announce the winners who have risen above the rest in the Summer of Solutions Challenge! These are the top community users and Super Users who have not only earned recognition but have become beacons of inspiration for us all. Power Apps Community: Community User Winner: @SpongYe Super User Winner: Pending Acceptance Power Automate Community: Community User Winner: @trice602 Super User Winner: @Expiscornovus Power Virtual Agents Community: Community User Winner: Pending AcceptanceSuper User: Pending Acceptance Power Pages Community: Community User Winner: @OOlashyn Super User Winner: @ChristianAbata We are also pleased to announced two additional tickets that we are awarding to the Overall Top Solution providers in the following communities: Power Apps: @LaurensM Power Automate: @ManishSolanki Thank you for making this challenge a resounding success. Your participation has reaffirmed the strength of our community and the boundless potential that lies within each of us. Let's keep the spirit of collaboration alive as we continue on this incredible journey in Power Platform together.Winners, we will see you in Vegas! Every other amazing solutions superstar, we will see you in the Community!Congratulations, everyone!
Ayonija Shatakshi, a seasoned senior consultant at Improving, Ohio, is a passionate advocate for M365, SharePoint, Power Platform, and Azure, recognizing how they synergize to deliver top-notch solutions. Recently, we asked Ayonija to share her journey as a user group leader, shedding light on her motivations and the benefits she's reaped from her community involvement. Ayonija embarked on her role as a user group leader in December 2022, driven by a desire to explore how the community leveraged various Power Platform components. When she couldn't find a suitable local group, she decided to create one herself! Speaking about the impact of the community on her professional and personal growth, Ayonija says, "It's fascinating to witness how everyone navigates the world of Power Platform, dealing with license constraints and keeping up with new features. There's so much to learn from their experiences.: Her favorite aspect of being a user group leader is the opportunity to network and engage in face-to-face discussions with fellow enthusiasts, fostering deeper connections within the community. Offering advice to budding user group leaders, Ayonija emphasized the importance of communication and consistency, two pillars that sustain any successful community initiative. When asked why she encourages others to become user group leaders, Ayonija said, "Being part of a user group is one of the best ways to connect with experienced professionals in the same field and glean knowledge from them. If there isn't a local group, consider starting one; you'll soon find like-minded individuals." Her highlight from the past year as a user group leader was witnessing consistent growth within the group, a testament to the thriving community she has nurtured. Advocating for user group participation, Ayonija stated, "It's the fastest route to learning from the community, gaining insights, and staying updated on industry trends." Check out her group: Cleveland Power Platform User Group
Hear from Corporate Vice President for Microsoft Business Applications & Platform, Charles Lamanna, as he looks ahead to the second annual Microsoft Power Platform Conference from October 3rd-5th 2023 at the MGM Grand in Las Vegas.Have you got your tickets yet? Register today at www.powerplatformconf.com
We wanted to take the time to celebrate and welcome the new user groups that have joined our community. Along with that take a look at the event that might be happening near you or virtually. Please welcome: Biz Apps Community User Group - Power Platform Community (microsoft.com) This user group is dedicated for all community members of all skill levels to learn how to get the most out of their community experience. East Michigan Power Platform User Group - Power Platform Community (microsoft.com) This is hopefully the beginning of a community, covering eastern Michigan, built around the Power Platform. Biz Apps Community User Group This user group is dedicated for all community members of all skill levels to learn how to get the most out of their community experience. Events to checkout: In-Person: September 2023 Hybrid Philadelphia Dynamics 365 & Power Platform User Group MeetDynamics 365 and Power Platform Physical Meetup Hyderabad Power Platform User Group Meetup - Sept 2023 (In-Person)Manchester September 2023 In Person Meeting Virtual: Everything Dataverse, Do you know that Dataverse is more than just a Database!POWER PLATFORM MONTHLY DIGEST- SEPTEMBERBaltic Summit 2023PL-900 Power Platform Fundamentals TrainingHR and L&D transformation through Power PlatformDynamics 365 Marketing Experience User Groups - Use Cases and NetworkingPower Platform and Dual Write from Dynamics 365 F&O PerspectiveANZ D365 FinOps Team September 2023 meetup
User | Count |
---|---|
46 | |
28 | |
22 | |
17 | |
17 |
User | Count |
---|---|
72 | |
44 | |
34 | |
30 | |
29 |