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 / Update Text Label Depe...
Power Apps
Suggested Answer

Update Text Label Depending on Condition

(0) ShareShare
ReportReport
Posted on by 224
I have a collection with Start Date, End Date, Notes, and True/False Column...
 
I'm trying to update a Text Label for all dates between Start and End that has a true value in the true/false column to display 📝.
 
I know I need to use ForAll, Sequence, and DateDiff together, but I can't seem to figure out how to get the dates from Start and End correctly.
 
I'm using the OOTB Calendar in Powerapps and basically it would display Info for the day and 📝 if the dates have a true value in the true/false column.
 
Below is what I have so far, and it works for the Start Date, but I need to update it so it captures al the dates between start and end.
 
If(IsEmpty(Filter(colUPCOMINGDAL,ThisItem.'Departure Date'= Parent.Selected.'Departure Date'&&ThisItem.'ACP Notes'= true )),ThisItem.Title&" "&ThisItem.Legs,"📝")
 
 
Can someone point me in the right direction?
Categories:
I have the same question (0)
  • Suggested answer
    tsa-svd2srv Profile Picture
    204 on at
    If I understand what you're asking, your Label's Text property should be something like:
    If(
        Not(IsBlank(LookUp(
            colUPCOMINGDAL,
            StartDate_ColumnName <= StartDatePickerName.SelectedDate && 
            EndDate_ColumnName >= EndDatePickerName.SelectedDate && 
            TrueFalse_ColumnName = true,
            Notes
        ))),
        "📝",
        ""
    )
    Let me know if it works.

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 428

#2
WarrenBelz Profile Picture

WarrenBelz 374 Most Valuable Professional

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 333 Super User 2025 Season 2

Last 30 days Overall leaderboard