Hi, I have a question where I have a Timer and its current format is: Text(Time(0; 0; Self.Value/1000); "mm:ss"), so it´s minutes and seconds. But it's not that accurate so I want it to have milliseconds too. How do I format the Timer function to also make milliseconds appear?
Solved! Go to Solution.
@AngeloLopes ,
Need to correct this ..
With(
{
Sec: RoundDown(Timer3.Value / 1000,0)
},
Simply try this. Copy the code on your Timer . It will work.
ith(
{
Miliseconds: Mod(Timer3.Value,1000)
},
With(
{
Sec: RoundDown(Timer3.Value / 1000,0)
},
With(
{Min: RoundDown(Sec / 60,0)},
Min & " : " & Sec & " : " & Miliseconds
)
)
)
Hi again @Abhilash_Swain ,
Found it!
This is what I wanted: Text(Time(0;0;0;Self.Value);"mm:ss:fff")
I just had to put an extra semi-colon so on the Time function it's Hours, Minutes, Seconds and then Milliseconds which has the Self.Value without converting. Then the format is what I want to see, so I only want to see Minutes, Seconds and Milliseconds (mm:ss: AND THEN ff). I don't know why it's an F but I found it!
Here is the Doc where I found it: https://docs.microsoft.com/en-us/power-apps/maker/canvas-apps/show-text-dates-times#format-dates-and... at point 5.
Thanks a LOT for the help!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
190 | |
95 | |
65 | |
63 | |
58 |
User | Count |
---|---|
243 | |
163 | |
91 | |
79 | |
79 |