Request for help : Monday + 1 = Tuesday (in formule)

  • Thread starter Thread starter J.J.Erkamp
  • Start date Start date
J

J.J.Erkamp

Hi
Please help
Which formule can I use to get the next day in B1
For example:
A1 = Monday
B1 = formule A1 + 1 = Tuesday
or
A1 = Wednesday
B1 = formule A1 + 1 = Thursday

A B
1 Monday (A1+1)

Regards

Hans
 
Zoals Peo je al verteld heeft
je moet de cel als een weekdag formateren ..........format cell
.....custom....dddd...
je moet in A1 =today() zetten
dan kun je in b1 = a1 +1 zetten
of in b1 =today()+1
Regards
Bill K
Nieuw Zeeland
 
Hi Bill,
Ik snap wat Peo en je zegt/schrijft.
Ik heb een nederlands Excel programma.
Alles blijft gelijk behalve meestal de formule.
Inderdaad werkt:
A1=vandaag() en geeft dinsdag, in B1 A1+1 geeft woensdag, correct
Maar ik wil in A1 een willekeurig dag invullen en dat werkt niet, ook
als ik het type veld special dddd geef, helaas.
Kan je mij aub een excel sheet sturen waarin de formule wel zit.
sorry voor de vraag.
Regards
Hans
 
Ok
i shouldn't have started in dutch... never mind
Hans
how at random do you want to enter the week day in A1
you could after having formatted each cell to dddd
enter a random number in cell a1
this will then show as a week day and b1 (having the formula .......=a1+1)
will give you the next day
regards
Bill K
 
Here is one way getting the next day using the name of the weekday as text
value

=IF(A1="","",INDEX({"Monday";"Tuesday";"Wednesday";"Thursday";"Friday";"Satu
rday";"Sunday";"Monday"},MATCH(A1,{"Monday";"Tuesday";"Wednesday";"Thursday"
;"Friday";"Saturday";"Sunday";"Monday"},0)+1))
 
I post in both threads in microsoft.public.excel.

Hans,

Are you saying that if you *type* "Monday" in A1, you want "Tuesday" in B1?

Regards
Anders Silven
 
Back
Top