Need Formula for automatic date update in same cell
Solved/Closed
Matrix1000
Posts
1
Registration date
Friday May 30, 2014
Status
Member
Last seen
May 30, 2014
-
May 30, 2014 at 03:51 PM
Osama_bb11 Posts 21 Registration date Sunday May 25, 2014 Status Member Last seen September 25, 2014 - Jun 13, 2014 at 11:56 PM
Osama_bb11 Posts 21 Registration date Sunday May 25, 2014 Status Member Last seen September 25, 2014 - Jun 13, 2014 at 11:56 PM
Related:
- Need Formula for automatic date update in same cell
- Date formula in excel dd/mm/yyyy - Guide
- Play store update - Guide
- Ps3 update - Guide
- Number to words in excel formula - Guide
- Nvidia automatic driver detection tool - Guide
3 responses
Osama_bb11
Posts
21
Registration date
Sunday May 25, 2014
Status
Member
Last seen
September 25, 2014
Jun 1, 2014 at 04:48 AM
Jun 1, 2014 at 04:48 AM
Dear
=today() will give you a date of ( now )
let's say one makes a test on ( A1 ) then next test after ( B1 )days you can add the following at C1 :
=IF(TODAY()<B1+A1,"After "&TODAY()-A1-B1,IF(TODAY()=B1+A1,"today "," delay"&A1+B1-TODAY()))
so you can see easily notice what you want by adding conditional format to C cells
I hope this will help other wise let me know
=today() will give you a date of ( now )
let's say one makes a test on ( A1 ) then next test after ( B1 )days you can add the following at C1 :
=IF(TODAY()<B1+A1,"After "&TODAY()-A1-B1,IF(TODAY()=B1+A1,"today "," delay"&A1+B1-TODAY()))
so you can see easily notice what you want by adding conditional format to C cells
I hope this will help other wise let me know
Osama_bb11
Posts
21
Registration date
Sunday May 25, 2014
Status
Member
Last seen
September 25, 2014
Jun 9, 2014 at 01:55 AM
Jun 9, 2014 at 01:55 AM
Hi,
Dear put data as follows :
put at A1 test date ( any date )---make sure to format A1 as date
put at B1 put number ( interval between two dates )----make sure to format B1 as number
put at C1 the formula =IF(TODAY()<B1+A1,"After "&TODAY()-A1-B1,IF(TODAY()=B1+A1,"today "," delay"&A1+B1-TODAY())) ---make sure to format C1 as General
then C1 will show the status if it is the time or still early or it is over depends on current date
anyway if you put at A1 = Today() that means A1 will keep change every day to current date same issue for B1 then my formula will never works
I hope this will help
Dear put data as follows :
put at A1 test date ( any date )---make sure to format A1 as date
put at B1 put number ( interval between two dates )----make sure to format B1 as number
put at C1 the formula =IF(TODAY()<B1+A1,"After "&TODAY()-A1-B1,IF(TODAY()=B1+A1,"today "," delay"&A1+B1-TODAY())) ---make sure to format C1 as General
then C1 will show the status if it is the time or still early or it is over depends on current date
anyway if you put at A1 = Today() that means A1 will keep change every day to current date same issue for B1 then my formula will never works
I hope this will help
Thank you so much! It works great! I really really appreciate your help.
Osama_bb11
Posts
21
Registration date
Sunday May 25, 2014
Status
Member
Last seen
September 25, 2014
Jun 13, 2014 at 11:56 PM
Jun 13, 2014 at 11:56 PM
welcome any time
Jun 3, 2014 at 01:42 PM
THanks for the help. I am not good at excel at all so I am sure it's just me but I can't get cell C1 to work.
I get "After - 40325" and it won't change to date format (which I am sure I do know how to do)
Maybe I am just not understanding conditional formatting.
Can you explain more.
Do I put =TODAY() for A1
and then
=IF(A1<>"", A1+ 14"") for B1 [if let's say I wanted it 14 days later]
and then enter your equation for C1?