Day Formula

rpriestley

Board Regular
Joined
May 28, 2006
Messages
230
I have the Day Monday in cell A1. What formula could I use to to increase the day by 1 for b1,c1,d1,e1 ETC. So for example if I typed tuesday in A1 automatically Wednesday would appear in B1
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Excel cannot interpret "Monday" without a macro.
Try this.
In cell A1 enter a date known to be a Monday eg. 6/8/2007
in cell B1 enter formula =A1+1
copy cell B1 across.
Format the cells "dddd"

TOOLS/OPTIONS/CUSTOM LISTS
Personally I find it easier to use 'Tools\Options\Custom Lists'. I think you will find the following there already, if not ..type days separated with commas. eg. Monday, Tuesday,...
I also have lists Mon, Tues, .... and January, February, .... etc. (Excel put them there)

Just need to enter one in a cell and drag the bottom right corner across.
Even though the months are listed in full, Excel is smart enough to interpret 'Jan' and will continue from whatever item you start with.
 
Upvote 0
Format the cells in advance as “dddd” then type in Monday and then drag the little black square in the bottom right of the cell and it will auto fill the remaining cells with sequential days.

There is no need for custom lists or "known" dates.
 
Upvote 0
Try: (Not my formula but cant remember where i got it from)

=IF(A1="","",TEXT(MATCH(LEFT(A1,2),{"Mo","Tu","We","Th","Fr","Sa","Su"},0)+DATE(4,1,4),"dddd"))

in cell B1 and copied across C1 etc

If you type Mo or Mon or Monday in A1 b1 will be tuesday etc...

same for all the days
 
Upvote 0
You could use:

=INDEX({"Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"},MATCH(A1,{"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"},FALSE))
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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