web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / how to delete records ...
Power Apps
Unanswered

how to delete records based on month wise

(0) ShareShare
ReportReport
Posted on by

i have sharepoint list ,for date using default coloumn 'Created'.

i connect to list to gallery.

now i want to delete records by bulk using Default Date coloumn. ( records should delete by month wise ). 

how to do this ?

Categories:
I have the same question (0)
  • Talha_Dar Profile Picture
    870 Super User 2024 Season 1 on at

    Hi @venky232,

     

    You can create two datepicker controls to select the start and end dates for the records that you want to delete. Then, use the following formula on the 'OnSelect' property of a button to delete all the records between these dates.

     

    RemoveIf(
     YourListName,
     DateColumn >= StartDatePicker.SelectedDate &&
     DateColumn <= EndDatePicker.SelectedDate
    );

     

    If you found my answer helpful, please consider giving it a thumbs-up or a like. Your feedback is greatly appreciated!

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • timl Profile Picture
    36,558 Super User 2025 Season 2 on at

    Hi @venky232 

    You can bulk delete records by calling the RemoveIf function.

    For example, here's how to delete records created in June 2023

    RemoveIf(YourSharePointList,
     Created >= Date(2023,06,01) && Created < Date(2023,07,01) 
    )

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
Kalathiya Profile Picture

Kalathiya 421

#2
WarrenBelz Profile Picture

WarrenBelz 365 Most Valuable Professional

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 339 Super User 2025 Season 2

Last 30 days Overall leaderboard