Time function =Now formula

F

Fred

Hello,

I don't think it's possible, because I look in all the books and searched
the Internet, but here is the function I would like to have.

Have a A1 cell with the value =NOW() to apply the current date in time in
that cell
Have a A2 cell that would display the A1 cell value minus 1 hour
Have a A3 cell that would display tha A1 cell value minus 15 hours

I basically need to ba able to see the curent hour (13:02) in the A1 cell
and see (12:02) in the A2 cell and (22:02) in the A3 cell.

Not possible, right ?
 
E

Eduardo

Hi,
in A2 enter

=A1-TIME(1,0,0)

in A3

=A1-TIME(15,0,0)

if this helps please click yes thanks
 
P

Pete_UK

With =NOW() in A1, put this in A2:

=NOW() - 1/24

or:

=A1 - 1/24

and this in A3:

=NOW() - 15/24

or:

=A1 - 15/24

Format all three cells as hh:mm

Hope this helps.

Pete
 
J

Jacob Skaria

a1
=NOW()
a2
=A1-TIME(1,0,0)
a3
=A1-TIME(15,0,0)

??

If this post helps click Yes
 
B

Bob Phillips

A1: =NOW()

A2: =A1-"1:00:00"

A3: =A1-"15:00:00"

ensure that you format it appropriately.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Help Creating Excel Formula 4
Elapsed Time Formula 6
Formula/Sum Question 2
Date lists 3
Using two Vlookup in one Cell 1
Time Formula????? 2
Networkdays function 3
Error with sum formula in excel 2007 4

Top