Excel Days of the Week

mysti0014

New Member
Joined
Nov 1, 2021
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I have a file that calculates a due date for an invoice. I am trying to determine their expected pay date. There are some customers that would pay on Monday, some Tuesday, etc. I would like to make my formula return the day of the week that is specified for their payment. For example. If an invoice is dated 10/1/21, and is due 11/1/21 but they are expected to pay on the next Thursday I would like it to return 11/4/21 as the date. I would like to be able to use the same formula is the customer usually pays on Tuesdays. Invoice date of 10/1/21, due 11/1/21, and returns an 11/2/21 date.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
You can use this formula, where A2 contains the due date.
Excel Formula:
=WORKDAY.INTL(A2-1,1,"1110111")
The 0 in the string at the end represents the payment day with the 7 digits being the days from Monday to Sunday, so "0111111" for Monday, "1110111" for Thursday, etc.
 
Upvote 0

Forum statistics

Threads
1,214,883
Messages
6,122,077
Members
449,064
Latest member
MattDRT

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