I am trying to create a Timechart that will list out the TotalHours of that day and then subtract the previous days TotalHours to see the Hours difference in each day. This needs to span 14 days Basically I just need the Total Hours difference from One day to the next spanned across a timechart This is the data and Query I have so far (not much) -------Search----- | where TotalHours != "0" AND _time>relative_time(now(), "-14d@d") | dedup PROJECT_NUMBER _time | table PROJECT_NUMBER TotalHours _time | sort by PROJECT_NUMBER
... View more