

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
SUM the minutes and seconds and show in mm:ss
Hi All,
I have a data field like this below. I want to show the SUM of this field and the result should be in mm:ss format. How to SUM this?
00:05 |
00:06 |
00:34 |
00:38 |
00:39 |
1:39 |
00:02 |
00:03 |
00:04 |
00:07 |
00:08 |
00:09 |
00:10 |
- « Previous Replies
-
- 1
- 2
- Next Replies »
Accepted Solutions

.png)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Try this script
load *,
TimeStamp#(ElapsedTime, 'hh:mm') AS Time_Format
Inline [
ElapsedTime
00:30
00:28
00:05];
and in front end use this expression
=Timestamp(Sum(Time_Format), 'hh:mm')
Hope this helps you.
Regards,
Jagan.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi All,
Any help here please!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use the Interval() function.
For example, this script,
load * Inline [
ElapsedTime
00:30
00:28
00:05];
with this function,
=interval(sum(ElapsedTime),'mm:ss')
will yield 63:00.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In the expression the above Calculation is showing 00:00 every time.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
interval(sum(TimeSpent),'hh:mm:ss')
missing hours format hh
this should be ok
Regards
Ziad


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This has not helped either.
Is it because I have some other dimensions as well?

.png)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Try this script
load *,
TimeStamp#(ElapsedTime, 'hh:mm') AS Time_Format
Inline [
ElapsedTime
00:30
00:28
00:05];
and in front end use this expression
=Timestamp(Sum(Time_Format), 'hh:mm')
Hope this helps you.
Regards,
Jagan.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=Interval(SUM(Time#(TimeField,'h:mm')),'hh:mm')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
Write the expression as
=Sum(Timestamp(ElapsedTime,'hh:mm'))
Thanks and Regards,
Ankita


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you Jagan.
This has worked.

- « Previous Replies
-
- 1
- 2
- Next Replies »