Help with Dates in Formula

cr2289

New Member
Joined
Jul 21, 2016
Messages
26
Office Version
  1. 365
Platform
  1. Windows
Help please. I need a formula that will add 15% to a date. If the resulting date is a Saturday, the date needs to be moved back to Friday. If the resulting date is a Sunday, the date needs to move up to Monday.

Here's what I'm using now:
- B5 is a start date
- B6 is an end date
- B7 calculates the total number of days (=B6-B5+1)
- B10 needs to calculate the date in B5 + 15% (=B5+ROUND((B7*0.15),0)-1

Is the formula in B10 correct?
What is a formula that will automatically change B10 results from a Saturday to the previous day (Friday)?
What is a formula that will automatically change B10 results from a Sunday to the next day (Monday)?

Thank you so much for your reply.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
- B10 needs to calculate the date in B5 + 15% (=B5+ROUND((B7*0.15),0)-1

Is the formula in B10 correct?
It looks reasonable but you will have to determine just what you want to happen in relation to rounding when the basic 15% calculation does not give an 'exact day'



What is a formula that will automatically change B10 results from a Saturday to the previous day (Friday)?
What is a formula that will automatically change B10 results from a Sunday to the next day (Monday)?
Assuming that your formula above was correct for adding the 15%, try this to add/subtract/leave alone as relevant.

=B5+ROUND((B7*0.15),0)-1+LOOKUP(WEEKDAY(B5+ROUND((B7*0.15),0)-1),{1,2,7},{1,0,-1})
 
Upvote 0

Forum statistics

Threads
1,215,767
Messages
6,126,781
Members
449,336
Latest member
p17tootie

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