DIFFICULT: Converting monthly data into daily data, how

sneeky

New Member
Joined
Dec 5, 2013
Messages
48
Hi. I have two columns, one with a date every month for a couple of years (usually last day) and another column, with a value like. 0.23788 for that particular date. How do i break this down into a daily series with corresponding values. I think this is asking for some sort of regression or something, and data to be assumed from that as we not given a daily value and presume it from sort of maths/stats??? it's related to finance if that helps.
.............. SORRY I HAVE TO AMEND. IT'S NOT ASKING FOR THIS.

All it wants me to do, is break the month into days with the SAME value given for that month that's all. So if it is 0..2999 for 30th March - all days in march should have that value.
How would i do this - what formulas or similar can i do to break it down to days quickly with corresponding same value if the month is the same without manually typing it all in. 7
Thx
 
Last edited:

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Seeing as it looks like a school project you will need to adjust the ranges yourself and read up on Sumproduct to answer question 4.

Excel Workbook
ABCDE
131/01/1999301/02/19997
227/02/1999702/02/19997
312/03/1999403/02/19997
401/03/19994
502/03/19994
603/03/19994
706/01/19993
8
Sheet2
 
Upvote 0
Before you ask about the year, I deliberately left it out so that you can learn the syntax.
 
Upvote 0
Before you ask about the year, I deliberately left it out so that you can learn the syntax.

Mark thanks a lot. sumproduct I came across before but couldn't get it to work for matching the date.
However, I'm struggling more with the splitting the months into their days/dates..I.e
The range. I really don't think it's expecting me to put a date in and drag it down a few thousand cells; I think it wants some function or technique where it will auto populalise all days from say, 1999-2002. Is that even possible? Or is drag down really the only option? Just seems unprofessional.
 
Last edited:
Upvote 0
Or is drag down really the only option?

In an isolated column (i.e. no data in the next column for autofill to work out where to fill to) and without Vba probably.

Mark thanks a lot. sum product came across before but couldn't get it to work for matching the date.
Matches fine in the example I posted as does the Index/Match below

Excel Workbook
ABCDH
125/02/2000301/02/19997
227/02/1999702/02/19997
312/03/1999403/02/20003
406/01/1999901/03/19994
502/03/19994
603/03/19994
706/01/19999
Sheet2
 
Upvote 0
should i be using match index, or a lookup?

Not my project and so can't answer that one. If it was me I would favour Index/Match but that's personal preference.

Sumproduct with date including year based on data I posted earlier

Excel Workbook
ABCDE
125/02/2000301/02/19997
227/02/1999702/02/19997
312/03/1999603/02/20003
406/01/1999901/03/19996
502/03/19996
603/03/19996
706/01/19990
Sheet2
 
Upvote 0
=INDEX($G$2:$G$180,MATCH(L2-DAY(L2),INDEX($F$1:$F$180-DAY($F$1:$F$180),0),0))

this is working better, but a month ahead?
 
Upvote 0
Your ranges don't match, you are using 2 to 180 at the start and 1 to 180 in the second part (and i should have changed $A$3 & $B$3 to $A$4 and $B$4 in my last post).
 
Last edited:
Upvote 0

Forum statistics

Threads
1,222,573
Messages
6,166,845
Members
452,079
Latest member
Frimpage

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