Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Default Value for Time

(0) ShareShare
ReportReport
Posted on by

Hi All,

 

I have a table in dataverse with various columns including a column called 'Date'.

 

I have made a canvas app which has two screens - the first screen has a gallery which has an overview of some important columns, When a column in the row is clicked it opens screen two which populates textboxes and combo boxes with the data of the selected row.

 

This works fine however I have a problem with the 'Date' column. I would like to display the time from the gallery in combo boxes. 

 

I have tried 

 

Gallery1.Selected.Date

 

in the Default field of the hours and minutes combo boxes but this just gives me 00:00.

 

Can anyone help?

 

Thanks 

Categories:
  • Verified answer
    LaurensM Profile Picture
    12,510 Super User 2025 Season 1 on at
    Re: Default Value for Time

    @AshleyTaylor,

     

    You can use the following code for the comboboxes:

    //Hours combobox
    
    //Items property (display hours starting from 00 until 23)
    ForAll(
     Sequence(24),
     Text(
     Value - 1,
     "00"
     )
    )
    
    //DefaultSelectedItems property
    //In case of a dropdown this would be Text(Hour(Gallery1.Selected.Date),"00") in the Default property
    [Text(Hour(Gallery1.Selected.Date),"00")]

     

    //Minutes combobox
    
    //Items property (display minutes starting from 00 until 59)
    ForAll(
     Sequence(60),
     Text(
     Value - 1,
     "00"
     )
    )
    
    //DefaultSelectedItems property
    //In case of a dropdown this would be Text(Minute(Gallery1.Selected.Date),"00") in the Default property
    [Text(Minute(Gallery1.Selected.Date),"00")]

     

    If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.

    Thanks!

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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,702 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,015 Most Valuable Professional

Leaderboard