cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
PowerAppsMerf2
Frequent Visitor

Problems with PowerApps time picker writing to list

I am setting up a Sharepoint calendar view where users select (+New) in a day within the calendar to open a PowerApps created form, and within the form they select the start date and time (AM/PM, hour and minute - in 15 minute increments), and the finish date and time with the same values.

 

PowerAppsMerf2_2-1710969413975.png

PowerAppsMerf2_0-1710968730635.png

 

This is the formula I used:

 

Add another drop down at the right with Items

["AM", "PM"]

and the Default

If(Hour(Parent.Default) < 12, "AM", "PM")

The Items of the Hour control

["12","01","02","03","04","05","06","07","08","09","10","11"]

and the Default

Text(If(Mod(Hour(Parent.Default), 12) = 0, 12, Mod(Hour(Parent.Default), 12)),"00")

Now the Update of the Data Card

DateControlName.SelectedDate + 
Time(
   If(
      AmPmControlName.Selected.Value = "PM", 
      12, 
      0
   ) + 
   Mod(
      Value(
         HourControlName.Selected.Value
      ), 
      12
   ), 
   Value(
      MinuteControlName.Selected.Value
   ),
   0
)

NOTE - you will need to replace the control names above with yours.

 

Regardless of what date or time is selected, it populates the calendar with the date and time the form was submitted.

 

The form entry shown on March 19 was for several days the following week, but it populates the calendar only on the date and time the form was submitted.

PowerAppsMerf2_0-1710971268309.png

 

 

Initially, I tried obtaining this information by selecting Date and Time in a column, but time fields do not appear. 

 

PowerAppsMerf2_3-1710970101683.png  

PowerAppsMerf2_4-1710970354584.png

 

If there is a way to get the hour and minute fields to appear and populate the calendar properly using Date and Time in a data card from lists, or using a formula, I am happy to achieve the end goal either way, or another method all together.   If it would be better achieved using the standard Sharepoint form rather than PowerApps, I can do that too.  PowerApps matches my other forms, which is why that is my preference.

 

The form also captures the equipment being requested, a cost center and project details and other information.  I would like requesters to be able to hover over an entry on the calendar and see the name of the equipment and which days equipment has been reserved so they can select other dates.  Also, having controls that prevent equipment from being double booked (same time range on the same day) would be a further refinement.

I am happy to share any configurations and settings.

 

Thank you

 

 

 

9 REPLIES 9
DJ_Jamba
Resident Rockstar
Resident Rockstar

Hi @PowerAppsMerf2 
That looks a little over complicated to me or maybe I'm misinterpreting you.

For hours I used:

ForAll(
    Sequence(12),
    Text(Value,"00")
)

 

And minutes:

ForAll(
    Sequence(4,0,15),
    Text(Value,"00")
)


Could you drop two labels into the same screen as your date/time picker and configure as follows:

 

Label1:

 

DateTimeValue(
    Concatenate(
        DatePicker3.SelectedDate,
        ", ",
        HourPicker.Selected.Value,
        ":",
        MinutePicker.Selected.Value,
        ":00 ",
        AMPMPicker.Selected.Value
    )
)

 

 

Label2:

 

Text(
    DateTimeValue(
        Concatenate(
            DatePicker3.SelectedDate,
            ", ",
            HourPicker.Selected.Value,
            ":",
            MinutePicker.Selected.Value,
            ":00 ",
            AMPMPicker.Selected.Value
        )
    ),
    "dd/mm/yyyy hh:mm:ss am/pm"
)

 

 

You can use either of these to patch the SP column.
And lastly, change the Display format of your SP column to standard instead of friendly

 

PowerAppsMerf2
Frequent Visitor

Thank you @DJ_Jamba,

I am working through your solution, but have a few questions.

 

1.  I am getting an error with the first formula for Hours

 

PowerAppsMerf2_0-1711022738777.png

PowerAppsMerf2_1-1711022786504.png

I have hour set up as:

PowerAppsMerf2_4-1711024074106.png

 

2. Labels - I assume the two labels represent a start date and and end date selection within the same data card?

3. Error with first text label control. (I assume this may resolve once the hour value formula is resolved).

PowerAppsMerf2_2-1711023370880.pngPowerAppsMerf2_3-1711023389249.png

 

 

DJ_Jamba
Resident Rockstar
Resident Rockstar

The ForAll formulas I supplied go into the items property of your hours and minutes dropdown controls. Did you do that?

im not at a pc right now so can’t provide screenshots

PowerAppsMerf2
Frequent Visitor

No, I was in Default.  

In items I receive the same error:

PowerAppsMerf2_2-1711024906633.png  

PowerAppsMerf2_3-1711024927180.png

 

 

DJ_Jamba
Resident Rockstar
Resident Rockstar

I think you might be using modern controls?
Remember that modern control are in preview and there's only a few that can be used in a prod environment.

The ones in the screenshot are safe to use

DJ_Jamba_0-1711026392985.png

Could you try this as a test in a new blank screen like the attached gif but using classic controls?

 

PowerAppsMerf2
Frequent Visitor

Hi @DJ_Jamba ,

I am sorry for the delay.  I have been trying to enable classic controls.  I do not see the option to switch in PowerApps.  However, in your gif, you do not show a classic controls tab either.   How are you enabling it?

 

PowerAppsMerf2_2-1711046787655.png

 

 

Searching for 'classic controls in PowerApps', this is what I believe I should be seeing:  

PowerAppsMerf2_1-1711046718161.png

I believe modern controls is most likely the issue, I just need to learn how to switch to classic.

DJ_Jamba
Resident Rockstar
Resident Rockstar

You can’t switch the modern controls you’ve used to classic controls. 
You have to recreate each control using a classic control and then delete the modern one. As long as classic is selected in the Insert tab you’re good to go. 

I am sorry, I am unable to find classic controls in PowerApps.  I created a new blank screen and added controls to it, but there is no selection available (classic or modern), so I assume it is still using modern controls.  This is the part I am stuck on.   I have asked others in my organization as well, and am having a hard time finding an answer. 

These are my PowerApps settings (from lower left gear icon).  This appears to only control color templates.

PowerAppsMerf2_0-1711130467042.png

And below are my control options:

 

PowerAppsMerf2_2-1711130787686.png

 

 

 

Thank you for your help.

DJ_Jamba
Resident Rockstar
Resident Rockstar

That looks like classic.
Can you add a new blank screen and add a drop down control to it and in the Items property of the control add this code:

ForAll(
    Sequence(12),
    Text(Value,"00")
)

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (710)