Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I want to set it to timestamp format like hh:mm:ss how can I achieve this?
usning this :
if([Timestamp Num]> $(vToday), (Fabs($(vToday) - [Timestamp Num])))
variable -vToday: =num(Timestamp(Now(),'MM/DD/YYYY hh:mm:ss'))
current output: 0.07 ,0.10 like that
required output: 01:20:01 like this [its example output]
working this sunny
if([Timestamp Num]> $(vToday), Interval(Fabs($(vToday) - [Timestamp Num]),'hhh:mm:ss'))
Hi Sony,
Your variable vToday is formating the timestamp as a number with num().
Try taking it out and see the result.
Felipe.
Do you need the current time?
LET vToday = Time(Frac(Now()), 'hh:mm:ss');
after removing it is giving null
no sunny its giving null
It is giving null? that can't be true.... I tried and it is working well
Hi sony,
Putting the formula into a text box:
=Timestamp(Now(),'hh:mm:ss')
gives the following !
It's probably giving null because his condition for
if([Timestamp Num]> $(vToday), (Fabs($(vToday) - [Timestamp Num])))
isn't met.
Oh I see... I guess this will now need to use a single quote around the variable
if([Timestamp Num]> '$(vToday)', (Fabs('$(vToday)' - [Timestamp Num])))
this also no luck I don't know why