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 / 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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 545 Most Valuable Professional

#2
Haque Profile Picture

Haque 314

#3
Kalathiya Profile Picture

Kalathiya 234 Super User 2026 Season 1

Last 30 days Overall leaderboard