Weighted month budget listed per day

p3b0_

New Member
Joined
Mar 29, 2017
Messages
2
Hello!


I am trying to do a budget with the final result to be listed per day like so:
01-jansunday$xxx
02-janmonday$xxx
03-jantuesday$xxx

<tbody>
</tbody>
and so on up to the last of december.


January budget: $100 000 would give about $3226 per day in average... but, my problem is that I also would like to have different weight depending on the day of the week.


Let's say every week in january have this weight:
Monday: 6%
Tuesday: 7%
Wednesday: 8%
Thursday: 9%
Friday: 25%
Saturday: 28%
Sunday: 17%


I'm having trubble since every month have different amount of weekdays. For example january 2017 have 5 sun-tue and 4 wed-sat. I can't seem to wrap my head around this problem and would appreciate any kind of help! My problem is how to calculate it, and it would be more then enough to explain how to make january work with the above data.

Please let me know if you need any more information, or if something needs to be explained.

Thank you,

Peter
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hi and welcome to MrExcel,

Table below creates based on the month the number of days and recalculates your weightage to a monthly weight and hence a value:


Excel 2016 (Windows) 64 bit
ABCD
1Month1-2-2017
2Amount100000
3
4WeekdayWeight# In monthAmount per day
5Monday:6%4€ 1,500,00
6Tuesday:7%4€ 1,750,00
7Wednesday:8%4€ 2,000,00
8Thursday:9%4€ 2,250,00
9Friday:25%4€ 6,250,00
10Saturday:28%4€ 7,000,00
11Sunday:17%4€ 4,250,00
Sheet1
Cell Formulas
RangeFormula
C5=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT($B$1&":"&EOMONTH($B$1,0))))=2))
C6=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT($B$1&":"&EOMONTH($B$1,0))))=3))
C7=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT($B$1&":"&EOMONTH($B$1,0))))=4))
C8=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT($B$1&":"&EOMONTH($B$1,0))))=5))
C9=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT($B$1&":"&EOMONTH($B$1,0))))=6))
C10=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT($B$1&":"&EOMONTH($B$1,0))))=7))
C11=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT($B$1&":"&EOMONTH($B$1,0))))=1))
D5=B5/SUMPRODUCT($B$5:$B$11,$C$5:$C$11)*$B$2




Hope this helps.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,444
Messages
6,124,893
Members
449,194
Latest member
JayEggleton

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top