Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the following expression which gives me a sum for food cost. I then take this sum and divide by net sales to get a Food Cost %.
Accounting wants to see this percentage averaged by the number of Tuesdays in the month to date. So for instance, the number of Tuesday for May to Date is 2, next week it will be 3 etc.
Any ideas on how best to tackle this problem?
Expression is Food Cost $/Net Sales (this expression is just the food cost)
IF (Month=Month(Today()),
Sum({$<Day={">=$(=1)<=$(=Max(Day(Today()-2)))"}, KEY_FormID={'DRSbwyPOS'}, KEY_Report={128}, KEY_Store-={210, 325}>}Amount),
//Else
Sum({$<KEY_FormID={'DRSbwyPOS'}, KEY_Report={128}, KEY_Store-={210, 325}>}Amount))
Maybe like discussed here for the weekday count?
¿How to count Saturdays in date range?
edit:
Tuesday count would look like
=Div(WEEKDAY(Monthstart(today())-2)+1-Monthstart(today())+Today(),7)
Maybe like discussed here for the weekday count?
¿How to count Saturdays in date range?
edit:
Tuesday count would look like
=Div(WEEKDAY(Monthstart(today())-2)+1-Monthstart(today())+Today(),7)
Thanks so much for your quick response