Time function =Now formula

  • Thread starter Thread starter Fred
  • Start date Start date
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 ?
 
Hi,
in A2 enter

=A1-TIME(1,0,0)

in A3

=A1-TIME(15,0,0)

if this helps please click yes thanks
 
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
 
A1: =NOW()

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

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

ensure that you format it appropriately.
 
Back
Top