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 / How to Show Only Calen...
Power Apps
Answered

How to Show Only Calendar Events Where Subject Contains "Booking"?

(0) ShareShare
ReportReport
Posted on by 8

Hi everyone,
I'm working with a calendar in Power Apps and would like to display only those events whose Subject contains the word "Booking". Currently, the Visible property of C_Circle2 is set to:

CountRows( Filter( MyCalendarEvents, DateValue(Text(Start)) = DateAdd(_firstDayInView, ThisItem.Value, Days) ) ) > 0 && !Subcircle1.Visible && Title2.Visible

How can I modify this formula so that it only counts/displays events where the Subject field contains the text "Booking" in addition to matching the selected date?

Any suggestions or examples would be appreciated. Thanks!

Categories:
I have the same question (0)
  • 11manish Profile Picture
    3,333 on at
    If your calendar event table has a column named Subject, try:
    CountRows(
        Filter(
            MyCalendarEvents,
            DateValue(Text(Start)) = DateAdd(_firstDayInView, ThisItem.Value, Days) &&
            "Booking" in Subject
        )
    ) > 0 &&
    !Subcircle1.Visible &&
    Title2.Visible
     
  • Verified answer
    DP_Prabh Profile Picture
    381 on at
    try using this formula,
     
    CountRows(
        Filter(
            MyCalendarEvents,
            DateValue(Text(Start)) = DateAdd(
                _firstDayInView,
                ThisItem.Value,
                Days
            ),
            "Booking" in Subject
        )
    ) > 0 && !Subcircle3.Visible && Title25.Visible
     
     

    ✅ If this helped, please mark it as the Accepted Solution. 👍 A Like is appreciated and helps others find the answer more easily!

     
     

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 Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard