Using Concatenate with Time

rlw989

New Member
Joined
Sep 16, 2006
Messages
5
I have a sheet that I want to enter the start time and end time of an event.

IE:
Start Time : 6:30
End Time: 10:30

I want to use concatenate to produce a column of cells with a time range in each row IE:
6:30 - 6:45
6:45 - 7:00
7:15 - 7:30
..........

All the cells are formated customer with h:mm

I tried to use this code =concatenate(Start Time Cell, " - ", Start Time Cell + 15)

But this does not work. By start time cell I simply mean the cell in which I entered the start time and then I want to add 15 minutes to that until I reach the end time.

Any ideas?
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Hi rlw989
Welcome to the board

With Start date in A1, please try:

Code:
=TEXT(A1,"h:mm")&" - "&TEXT(A1+"0:15","h:mm")

Hope this helps
PGC
 
Upvote 0
Hey pgc01,
Thanks for this. This just saved me a lot of time trying to figure out a similar problem.
You rock.
 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,822
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top