
Contributor II
2020-09-15
08:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Delta between rows
Hello,
Starting from the bellow table(Delta is the desired output) I would like to get the delta between rows and from that data to make a graph.
Initially, every minute I had a value, but I used AGGR to get the hourly average( AGGR(AVG(values),ora).
What is the best way get the delta between the rows in order to display it in a graph ?
Thank you,
Costi
1,010 Views
1 Solution
Accepted Solutions

MVP
2020-09-15
08:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@CostinelRO you an try below in expression. Make sure that your dimension is sorted by hour otherwise above function won't work as expected
=value-above(Value)
993 Views
2 Replies

MVP
2020-09-15
08:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@CostinelRO you an try below in expression. Make sure that your dimension is sorted by hour otherwise above function won't work as expected
=value-above(Value)
994 Views

Contributor II
2020-09-15
08:49 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you @Kushal_Chawda .
973 Views
