Direct Debit Payment Modeling

CarlCarlos

New Member
Joined
Jan 12, 2011
Messages
31
Hi All,

I am back again with another dates based query. I am looking to forecast my direct debit payments by week and need to model which week a payment will be taken from my bank account if it falls on a Saturday, Sunday or Bank Holiday...

Week1 Week2 Week3 ... etc
Sun 1st 8th
Mon 2nd 9th
Tue 3rd 10th
Wed 4th 11th
Thur 5th 12th
Fri 6th 13th
Sat 7th 14th

I want to build a model that says if my normal DD payment date is the 1st then the actual payment date will be the 2nd (in this example) or if the DD payment date is 7th then payment will be on the 9th.

Thank you all in advance
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Assuming your date is in cell A1, try this worksheet formula:

Code:
=IF(WEEKDAY(A1)=1,1+A1,IF(WEEKDAY(A1)=7,2+A1,A1))
 
Upvote 0

Forum statistics

Threads
1,215,020
Messages
6,122,709
Members
449,093
Latest member
Mnur

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