I am trying to add 10 days to a "custom" date
Closed
realpple
Posts
2
Registration date
Sunday October 12, 2014
Status
Member
Last seen
October 13, 2014
-
Oct 12, 2014 at 01:36 PM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Oct 14, 2014 at 10:52 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Oct 14, 2014 at 10:52 AM
Related:
- I am trying to add 10 days to a "custom" date
- Ultimate custom night - Download - Horror
- Add 90 days to a date - Guide
- How to add songs to sound picker - Guide
- 2007 microsoft office add-in microsoft save as pdf or xps - Download - Other
- How to add @ in laptop - Guide
2 responses
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Oct 13, 2014 at 12:07 PM
Oct 13, 2014 at 12:07 PM
Hi Realpple,
That is because you created a numerical string.
Create a date string by using d, m and y like:
ddVmmVyyyy
I used "V" because "\/" was turned into "/".
Best regards,
Trowa
That is because you created a numerical string.
Create a date string by using d, m and y like:
ddVmmVyyyy
I used "V" because "\/" was turned into "/".
Best regards,
Trowa
realpple
Posts
2
Registration date
Sunday October 12, 2014
Status
Member
Last seen
October 13, 2014
Oct 13, 2014 at 06:41 PM
Oct 13, 2014 at 06:41 PM
Thank you, however I am trying to use a string that when the date is being entered you don't have to put in any dashes or slashes. Is it possible to add 10 days to the date like this? Maybe there is a different way I can format the date? and still do both of these actions?
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Oct 14, 2014 at 10:52 AM
Oct 14, 2014 at 10:52 AM
Hi Realpple,
Consider this workaround:
Format cell A1 as text.
Now use a formula to change this value into a date:
=LEFT(A2,2)& "-" &MIDB(A2,3,2)& "-" & RIGHT(A2,4)
You can place this formula anywhere you want, in the next cell, out of sight, another sheet as long as you refer to the formula cell when adding the 10 days.
Best regards,
Trowa
Consider this workaround:
Format cell A1 as text.
Now use a formula to change this value into a date:
=LEFT(A2,2)& "-" &MIDB(A2,3,2)& "-" & RIGHT(A2,4)
You can place this formula anywhere you want, in the next cell, out of sight, another sheet as long as you refer to the formula cell when adding the 10 days.
Best regards,
Trowa