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 / Add text in calendar
Power Apps
Suggested Answer

Add text in calendar

(1) ShareShare
ReportReport
Posted on by 63
Hi

I made a calender in power Apps.
Now i would like to show the Title in a textfield on the specific date.
Is it also possible when you click on the text, you navigate to the item?
In List i have collums:   Date (time start)  / Date (time end) / Title
 
How do i configure this?
Thx allready
Categories:
I have the same question (0)
  • Suggested answer
    Valantis Profile Picture
    6,735 on at
     
    For both things you want, the approach is a nested gallery inside each calendar day cell.

    1. Click inside the day cell in your calendar gallery and insert a new blank vertical gallery. Set its Items property to filter your list by the current day:
    Filter(YourList, DateValue(Text('Date (time start)')) = ThisItem.Value)

    2. Inside that nested gallery, add a label and set its Text to ThisItem.Title. That will show the event titles on the right dates.

    3. For navigation when clicking, set the OnSelect of that label to:
    Set(varSelectedItem, ThisItem); Navigate(YourDetailScreen)
    Then on the detail screen, set the form's Item property to varSelectedItem.
    Matthew Devaney has a full walkthrough for this exact setup: https://www.matthewdevaney.com/make-a-calendar-in-power-apps-part-2/
     

     

    Best regards,

    Valantis

     

    ✅ If this helped solve your issue, please Accept as Solution so others can find it quickly.

    ❤️ If it didn’t fully solve it but was still useful, please click “Yes” on “Was this reply helpful?” or leave a Like :).

    🏷️ For follow-ups  @Valantis.

    📝 https://valantisond365.com/

    💼 LinkedIn

    ▶️ YouTube

  • Suggested answer
    11manish Profile Picture
    3,333 on at
    Use a nested Gallery inside each calendar date to show events from your list.
    Filter records using:

    DateValue('Date (time start)') <= ThisItem.Date &&
    DateValue('Date (time end)') >= ThisItem.Date
     
    Display the Title using ThisItem.Title.
    Make it clickable with:
    • Navigate(DetailScreen, { selectedRecord: ThisItem })
    Bind your detail form using Item = selectedRecord.
     
    Use DateValue() and a nested gallery to handle multiple and multi-day events correctly in Microsoft Power Apps.

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