- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Creating per minute average values from 10 every second timestamp
Hi,
I have data appearing 6 times every 10 second and I want to convert that as a per minute data.
Can you please help me with that?
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Creating per minute average values from 10 every second timestamp
If you want to remove seconds and then calculate the average you can create new column with formula such as
:Time - Second(:Time)
to remove seconds from the timestamp. Then aggregate them with Summary table for example:
-Jarmo