Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have created a field by using
INTERVAL(TIMESTAMP(ReloadTime(),'hhh:mm:ss')- INTERVAL(TIMESTAMP(EvDate),'hhh:mm:ss')) AS Trial,
And I believe the data is correct However, I would like to remove the AM and PM Fields, , I have attached a ss . Thank You in advance .
=interval(reloadtime() - timestamp(today()-1), 'hh:mm:ss')
=interval(reloadtime() - timestamp(EvDate), 'hh:mm:ss')
Perhaps a string function like subfield would work:
=subset(Trial,' ', 1)
Matt
Perhaps this might help (with formatting) of the timestamp.
I ended up using Subfield at the script level
SubField(INTERVAL(TIMESTAMP(ReloadTime(),'hhh:mm:ss')- INTERVAL(TIMESTAMP(EvDate),'hhh:mm:ss')),' ',1))
Which is giving me
I am getting what I need but do you think it is the wrong way?
Will I have problems doing aggregations on this, it seems to be working as of now
=interval(reloadtime() - timestamp(today()-1), 'hh:mm:ss')
=interval(reloadtime() - timestamp(EvDate), 'hh:mm:ss')
Hi,
Enclose your formula with Time(Your_Formula, 'hh:mm:ss'). This way your time data will be displayed just in hours, minutes and seconds disregarding the AM/PM,
regards
That Worked perfectly Thank You so much!