Skip to main content

Notifications

Power Apps - Power Apps Experimental Features
Answered

Calendar with month only

(0) ShareShare
ReportReport
Posted on by 2
Hi,
I'd like to add a calendar only with months in power apps.  I want something like that:
 
2024
January February March April
Project A     Project B
Projetc C
May June July August
Project D   Project E
Project F
Project G
 
September October November December
  Project H Project I  
 
 
All projects entered have a starting date.  With the month of this date, I'd like to add them on the right month to have a visual view of up coming project.
Thanks
  • Verified answer
    WarrenBelz Profile Picture
    WarrenBelz 143,867 on at
    Calendar with month only
    Put up a Gallery with a Wrap count of 4 and add this to the Items using your List, Project Start Date and Project Name fields. This example will bring in the current year.
    With(
       {
          _Start: Date(Year(Today()), 1, 1),
          _End: Date(Year(Today()), 12, 31)
       },
       With(
          {
             _Months: 
             ForAll(
                Sequence(12),
                {StartMonth: Date(Year(Today()), Value, 1)}
             ),
             _Projects: 
             Filter(
                YourProjectList,
                YourStartDate >= _Start && YourStartDate <= _End
             )
          },
          AddColumns(
             _Months,
             ProjectNames,
             Concat(
                Filter(
                   _Projects,
                   Month(YourStartDate) = Month(StartMonth)
                ),
                YourProjectName,
                Char(10)
             ),
             MonthName,
             Text(StartMonth, "mmmm yyyy")
          )
       )
    )
     
    Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.
    MVP (Business Applications)    Visit my blog Practical Power Apps    Buy me a coffee
  • ronaldwalcott Profile Picture
    ronaldwalcott 1,345 on at
    Calendar with month only
    You could create a dashboard type of screen with a bunch of containers and galleries. You can have a collection for each month which will display in the gallery.
     

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

November 2024 Newsletter…

November 2024 Community Newsletter…

Community Update Oct 28…

Power Platform Community Update…

Tuesday Tip #9 Get Recognized…

Welcome to a brand new series, Tuesday Tips…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 143,867

#2
RandyHayes Profile Picture

RandyHayes 76,308

#3
Pstork1 Profile Picture

Pstork1 64,174

Leaderboard

Featured topics