Hourly data split across new 15-minute data

PepperBrooks

New Member
Joined
Aug 14, 2018
Messages
2
Hi - I am hoping to divide up hourly data into 15-minute increments. The values associated with the hourly data similar should be put into quarters. The two tables below are a small sample example. The first is the data I have now and the second is that data as it should look. I just need the new values. Any ways without a macro are preferable. The final will include data for a full year. Thanks for any help/guidance. Any suggestions?

Hourly DataValues15-Minute DataNew Values
01/01 01:00:0011/1/14 12:00:00 AM?
01/01 02:00:00041/1/14 12:15:00 AM?
01/01 03:00:0001/1/14 12:30:00 AM?
1/1/14 12:45:00 AM?
1/1/14 1:00:00 AM?
1/1/14 1:15:00 AM?
1/1/14 1:30:00 AM?
1/1/14 1:45:00 AM?
1/1/14 2:00:00 AM?

<tbody>
</tbody>

<tbody>
</tbody>



Hourly DataValues15-Minute DataNew Values
01/01 01:00:0011/1/14 12:00:00 AM.25
01/01 02:00:00041/1/14 12:15:00 AM.25
01/01 03:00:0001/1/14 12:30:00 AM.25
....cont'd1/1/14 12:45:00 AM.25
1/1/14 1:00:00 AM1
1/1/14 1:15:00 AM1
1/1/14 1:30:00 AM1
1/1/14 1:45:00 AM1
1/1/14 2:00:00 AM0
1/1/14 2:15:00 AM0
1/1/14 2:30:00 AM0
1/1/14 2:45:00 AM0
....cont'd

<tbody>
</tbody>
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Hi,

If your "Values" start in cell B2 and your "New Values" start in cell D2, then you can try inserting the following formula into cell D2 and drag it down:
=INDEX(B:B,ROUNDUP(ROW()/4+0.75,0))/4
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,692
Members
449,117
Latest member
Aaagu

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