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

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / displaying overdue in ...
Power Apps
Unanswered

displaying overdue in powerapps

(0) ShareShare
ReportReport
Posted on by 172

I am trying to display overdue items with completing equals no. 

this is my code 

 

ClearCollect(
collrequestsoverdue,
Filter(
'mylist',
('Due Date' > (DateAdd(
Today(),
1,
Days
)) && Completed = "no")
)
);

first i get delegation warning and the result is not correct. it doesn't display correct number of overdue items. 

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

    @KDAI 

    Too many parentheses.

    ClearCollect(
     collrequestsoverdue, Filter(
     'mylist',
     'Due Date' > DateAdd(Today(),1) &&
     Completed = "no"
     )
    );
  • Drrickryp Profile Picture
    Super User 2024 Season 1 on at

    @KDAI 

    Too many parentheses.

    ClearCollect(
     collrequestsoverdue, Filter(
     'mylist',
     'Due Date' > DateAdd(Today(),1) &&
     Completed = "no"
     )
    );
  • KDAI Profile Picture
    172 on at

    not working same result, I have 5 overdue items it displays 3 and the three are all not overdue. all of the items have dude dates higher than 9/6/2022, i needed the items with due date 9/5/2022 or earlier not working.

  • Drrickryp Profile Picture
    Super User 2024 Season 1 on at

    @KDAI 

    So you want items due before tomorrow? 

    ClearCollect(
     collrequestsoverdue, Filter(
     'mylist',
     'Due Date' < DateAdd(Today(),1) &&
     Completed = "no"
     )
    )

     

  • KDAI Profile Picture
    172 on at

    i want items that are overdue, that were supposed to be completed before today but not completed

  • KDAI Profile Picture
    172 on at

    this one seems working ClearCollect(
    collrequestsoverdue,
    Filter(
    mylist,
    (DateDiff(
    'Due Date',
    Today()
    ) > 0 && Completed = "no")
    )
    );

  • Drrickryp Profile Picture
    Super User 2024 Season 1 on at

    @KDAI 

    For items due before yesterday, so would 

    'Due Date' < DateAdd(Today(),-1)

     

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 335 Most Valuable Professional

#2
11manish Profile Picture

11manish 166

#3
sannavajjala87 Profile Picture

sannavajjala87 71 Super User 2026 Season 1

Last 30 days Overall leaderboard