This content has been marked as final.
Show 6 replies
-
2. Re: How to get the difference between point times in a chart ?
Ken Flerlage Jun 19, 2019 8:48 AM (in response to Philip Ramkeerat)So you want to see the change from one point to the next?
-
3. Re: How to get the difference between point times in a chart ?
Philip Ramkeerat Jun 19, 2019 11:23 AM (in response to Ken Flerlage)Yes, that's right, the difference between the points, between two points in the case, in a matter of hours
-
4. Re: How to get the difference between point times in a chart ?
Ken Flerlage Jun 19, 2019 11:43 AM (in response to Philip Ramkeerat)Can you provide a packaged workbook so we can show you how?
-
5. Re: How to get the difference between point times in a chart ?
Philip Ramkeerat Jun 19, 2019 2:44 PM (in response to Ken Flerlage)Here is my friend, I wanted the difference between hours of each table row for example.
Many thanks for the support!
-
6. Re: How to get the difference between point times in a chart ?
Ken Flerlage Jun 19, 2019 4:21 PM (in response to Philip Ramkeerat)The following will give you the number of hours difference between the current and previous date. Is this what you're looking for? If so, be sure to compute the table calculation using Dataexample as shown below.
// Difference from previous value.
DATEDIFF('hour', LOOKUP(MAX([Dataexample]),-1), ATTR([Dataexample]))

