What I would like:
- Add sales with date
- Automatically ad corresponding week number
- So I can sort and compare on week by week basis
I don’t assume it will be easy, but is there a way for starters?
What I would like:
You can start by using a Math column to determine the Week Number from the Date, and take it from there.
Weeknum(Date)
Ah ok! That helps!
I just did this yesterday, and didn’t know of @Darren_Murphy’s Weeknum function, but managed to get dated Entries sorted into weeks (and also months) for viewing reports of these Entries.
In a helper table set columns for:
I also have custom filters to choose these weekly ranges, or monthly ranges, and also by a parent category.
Thanks! I don’t know if I would have managed that.
But @Darren_Murphy 's track did the trick.
Darren, this is great and easy, thanks.
Can I ask you one more thing?
Say if I wanted to see differences between this week and last week and the week before that so I could make a hit list, could you give me a beginning where and how to start?
Never mind of course if you’re busy!
I think you can approach it like this:
YEAR(N)*10^2+WEEKNUM(N)
YEAR(N-7)*10^2+WEEKNUM(N-7)
With N being the date in question.
Then, you can create a relation + lookup: Relate last week’s math column to current week’s math column, then lookup the sales from last week.
Finally, calculate the difference.
Thank so much, I am going to try this!