Forgot to say - the reason for putting the increment in cell b1 gives you the flexibility to play around with the time
Steve
Main Topics
Browse All TopicsHello, I have a number in cell a1, and what I need is in the next cell below which is a2 to add two hours to the value in cell a1, and then repeat this step for the next 6 cells, the time would be based on a 24hr clock
For example
a1=14
a2=16
a3=18
a4=20
a5=22
a6=24
a7=02
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi sandramac,
Assuming you've "seeded" A1 with a literal value like 14 or 13, then the following formula will increment the number by two for each subsequent cell when copied down and pad in leading zeroes when required.
=RIGHT("0"&IF(A1+2>24,IF(I
This will handle odd or even numbers in the "seed" cell. It returns the value as text.
Not sure if this is what you want, but thought I'd offer it in case it might help..
Regards,
Justin
Business Accounts
Answer for Membership
by: dambuster99Posted on 2004-05-13 at 01:03:33ID: 11057058
HI
Format the column to Time
enter the first time in cell a1 eg 14:00
i woould put the increment in say cell b1 eg 02:00 being 2 hrs
in cell a2 enter +$a$1+b1
and copy down
Steve