How do i change the date and time picker from 24-hr to 12-hr format.
This is what is already in the data card:
DateValue1.SelectedDate + Time(Value(HourValue1.Selected.Value), Value(MinuteValue1.Selected.Value), 0)
I located a previous solution, when I enter this it does not work:
AmPmValue1.Items: ["AM", "PM"] AmPmValue1.Default: If(Hour(Parent.Default) < 12, "AM", "PM") HourValue1.Items: ["12","01","02","03","04","05","06","07","08","09","10","11"] HourValue1.Default: Text(If(Mod(Hour(Parent.Default), 12) = 0, 12, Mod(Hour(Parent.Default), 12)),"00") DataCard1.Update: DateValue1.SelectedDate + Time(If(AmPmValue1.Selected.Value = "PM", 12, 0) + Mod(Value(HourValue1.Selected.Value), 12), Value(MinuteValue1.Selected.Value), 0)
This link that references a formula doesn't tell you how to insert to change: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-clock-calendar
Please help!
Solved! Go to Solution.
All of the code does not get pasted in a single control. You need to put the code in each control/property.
I have copied and pasted the code you supplied into a test app and everything works fine for me. Your post says your code does not work. Could you please tell me what specifically does not work with your code?
Hello,
Where in the card does this code get pasted into?
Is it when the card is selected? the one that includes the hrs and minutes?
DataField?
Default?
When I insert the code it shows error, see screen shots.
All of the code does not get pasted in a single control. You need to put the code in each control/property.
Ah, thank you. Once you mentioned it needed to be broken down I was able to make adjustments successfully.
hello @mdevaney ,
I am just now catching and issue. I separated the update like you previously mentioned, but now when PM is selected it automatically changes to AM once you submit. Why isn't the PM working?
Your last post on this thread was over a month ago. I suggest you create a new thread and explain the problem you are now having there instead.
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Yes there are separate areas to place the code (Default, Item and Update). To get mine to work I had to lose the 0 in from to the numbers 1-9. There is a post on here that breaks it down as to where the pieces are placed.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
257 | |
122 | |
85 | |
75 | |
72 |