Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there away to make a timeline
where i know the lowest and highest value and where i know the middel and varians value Thanks Alvin |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here is a rough start for you.
Sub ab() Dim j As Long, i As Date Dim StartDate As Date, EndDate As Date Dim Interval As Long Dim NumOfIntervals As Long StartDate = #1/1/2006# EndDate = #3/31/2006# NumOfIntervals = 15 j = 0 Interval = Int((EndDate - StartDate) / NumOfIntervals) For i = StartDate To EndDate Step Interval Range("A1").Offset(0, j).Value = i j = j + 1 Next End Sub -- Regards, Tom Ogilvy "alvin Kuiper" wrote in message ... Is there away to make a timeline where i know the lowest and highest value and where i know the middel and varians value Thanks Alvin |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi tom
It was not whar i ment, I try to explain later and come back with a new thread is that allright?? But thanks Alvin "Tom Ogilvy" wrote: Here is a rough start for you. Sub ab() Dim j As Long, i As Date Dim StartDate As Date, EndDate As Date Dim Interval As Long Dim NumOfIntervals As Long StartDate = #1/1/2006# EndDate = #3/31/2006# NumOfIntervals = 15 j = 0 Interval = Int((EndDate - StartDate) / NumOfIntervals) For i = StartDate To EndDate Step Interval Range("A1").Offset(0, j).Value = i j = j + 1 Next End Sub -- Regards, Tom Ogilvy "alvin Kuiper" wrote in message ... Is there away to make a timeline where i know the lowest and highest value and where i know the middel and varians value Thanks Alvin |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
best timeline | Charts and Charting in Excel | |||
Timeline Chart | Charts and Charting in Excel | |||
Timeline Chart? | Excel Discussion (Misc queries) | |||
timeline | Charts and Charting in Excel | |||
Timeline Chart? | Charts and Charting in Excel |