Skip to main content

Notifications

Power Apps - Building Power Apps
Answered

Total two timers value with milliseconds

Posted on by 18
Hi everyone,
 
I have two timers with format in minutes:seconds:milliseconds
Text(Time(0,0,0,Self.Value),"mm:ss:ff")
 
The first Timer for value is Timer1.Value (Ex: 00:05:573)
The secondary Timer for value is Timer2.Value (Ex: 00:08:986)
 
How can I display the total time in seconds and milliseconds of those two timers?
I want to show the result 14s559: 00:05:573 + 00:08:986 = 00:14:559 
 
Thank you.
Categories:
  • Suggested answer
    Inogic Profile Picture
    Inogic 830 on at
    Total two timers value with milliseconds
    Hi,
     
    Could you please try the below expression to show the time in seconds and milliseconds of two timers in the format (ex. 14s559):

    Text(
        RoundDown((Timer1.Value + Timer2.Value) / 1000, 0),
        "##"
    ) & "s" &
    Text(
        Mod(Timer1.Value + Timer2.Value, 1000),
        "000"
    )

    Also, if you want to display only an addition for two timers in the format (ex. 00:14:559) please try the below expression

    Text(Time(0, 0, 0, Timer1.Value + Timer2.Value), "mm:ss:fff")

    Hope this helps.
     
    Thanks!
    Inogic Professional Services: Power Platform/Dynamics 365 CRM
    An expert technical extension for your techno-functional business needs
    Drop an email at crm@inogic.com 
    Service: https://www.inogic.com/services/ 
    Tips and Tricks: https://www.inogic.com/blog/ 

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 #7 Community Profile Tips…

Welcome to a brand new series, Tuesday Tips…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 143,487

#2
RandyHayes Profile Picture

RandyHayes 76,308

#3
Pstork1 Profile Picture

Pstork1 64,014

Leaderboard