Share via

Adding time to a formula

Rebecca Pearce 40 Reputation points
2026-03-25T08:25:18.5733333+00:00

Hi everyone, I am having a little problem with adding time to an Excel formula

This is what I am trying to do:- cell C1 = I enter todays date and time. The formula in Cell B2 is =IF(C1="","",C1)

How do I add to the formula in cell B2 so that it will add an extra 2 minutes to the result ?

Hope that makes sense.

Rebecca

Microsoft 365 and Office | Excel | For home | Windows
0 comments No comments

Answer accepted by question author
  1. Q&A Assist
    2026-03-25T08:25:30.9+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Use the TIME function to add 2 minutes to the value in C1.

    In cell B2, use:

    =IF(C1="","",C1+TIME(0,2,0))
    

    This keeps B2 blank if C1 is blank; otherwise it returns the date/time in C1 plus 2 minutes.


    References:

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.