Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

total sales based on timestamp

Hi Viewers,

I have a doubt.

Sum({<year={2015},month={'may'},weekday={'sun'}>}sales)

But how do we analyse total sales based on timestamp

Suppose we have timestamp 6:00pm for Sunday

Pls help me on this.

1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

If you want a Set Analysis expressions picking out transactions after 6:00pm on Feb 21st, you can use

Sum({$<Timestamp={">=2/21/2016 6:00pm"}>} Sales)

Just make sure to use the correct timestamp format. See Dates in Set Analysis

HIC

View solution in original post

3 Replies
Chanty4u
MVP
MVP

use timestamp as now()

it will give the exaxt time as

now.png

hic
Former Employee
Former Employee

If you want a Set Analysis expressions picking out transactions after 6:00pm on Feb 21st, you can use

Sum({$<Timestamp={">=2/21/2016 6:00pm"}>} Sales)

Just make sure to use the correct timestamp format. See Dates in Set Analysis

HIC

Not applicable
Author

Thanks Henric for your help.