Forum Discussion
igibson
8 years agoFrequent Visitor
Calculating daily retail budgets
I am attempting to calculate budgets for retail stores for each day. The formula that I must use is Daily Budget = Sales/SUM(Sales); * Budget. The sum of the sales should be the sum of al...
- Anonymous8 years ago
igibson,
Create the following columns in your table.
Month = MONTH(Table[Date])Sumsales = CALCULATE(SUM(Table[Sales]),ALLEXCEPT(Table,Table[Month]))
Daily budget = Table[Sales]/Table[Sumsales]*Table[Bugdet]
Regards,
Lydia - Anonymous8 years ago
igibson,
Just change the formula of Sumsales to the following:
Sumsales = CALCULATE(SUM(Table[Sales]),ALLEXCEPT(Table,Table[Month],Table[Store]))
Regards,
Lydia
Anonymous
8 years agoNot applicable
igibson,
Create the following columns in your table.
Month = MONTH(Table[Date])
Sumsales = CALCULATE(SUM(Table[Sales]),ALLEXCEPT(Table,Table[Month]))
Daily budget = Table[Sales]/Table[Sumsales]*Table[Bugdet]
Regards,
Lydia
mimi
Advocate I
7 years agoHow would you use that to create Budget MTD