Return of previous day based on selection

tomleitch

Board Regular
Joined
Jan 3, 2012
Messages
189
Hi,

I'm wondering if anyone can help.

I have a userform which has days of the week (mon through to sunday) as a selection and whatever day is selected is entered as a text into a cell...


what I want to do from this is work out the actual date of the previous day that has been selected:

i.e. if the user chooses tuesday then I want to return a date of what the previous tuesday was.


Thanks
Tom
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Cell A1 is the weekday value

=TODAY()-WEEKDAY(TODAY()-MATCH(A1,{"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"},0))
 
Upvote 0
Hi AlphaFrog, and thanks for your help.

That's doing pretty much exactly what I want - however there is one thing I wanted it to do. (maybe should have explained better)

If today is Sunday 15th April and the day Sunday is selected - then I want it to return todays's date, rather than the previous week's sunday.

Is this possible?

Thanks
Tom
 
Upvote 0
Hi AlphaFrog, and thanks for your help.

That's doing pretty much exactly what I want - however there is one thing I wanted it to do. (maybe should have explained better)

If today is Sunday 15th April and the day Sunday is selected - then I want it to return todays's date, rather than the previous week's sunday.

Is this possible?

Thanks
Tom


=TODAY()+1-WEEKDAY(TODAY()+1-MATCH(A1,{"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"},0))
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,279
Members
449,075
Latest member
staticfluids

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