Dave thanks for your help
I got this (see below) to work (dont ask how)
What it does is, it crawls through my column with dates and will write
the address of the last in cell D1 and the first in D1.
Now I "simply" need to run a chart from the range that is in these
cells .. I cant figure out how though....
I need to turn the VALUE of cell D1 into a variable and the same with
D2 and then chart (value(D2):value(D1)).
Since I have no clue about programing I dont know how...
If I get this done I am done my project
Matt
Sub ED()
' find first cell with a date amongst EMPTY cells then stop Do
Do
ActiveCell.Offset(1, 0).Select
If Not IsDate(ActiveCell) Then Else GoTo Line1
Loop
Line1:
'This is the first full cell
Range("D2").Value = ActiveCell.Address
'Find LAST full cell DOWN
Do
'ActiveCell.Value = Mid(ActiveCell.Value, 6)
ActiveCell.Offset(1, 0).Select
If IsEmpty(ActiveCell) Then
Exit Do
End If
Loop
ActiveCell.Value = ActiveCell.Address
ActiveCell.Offset(-1, 0).Select
Range("D1").Value = ActiveCell.Address
ActiveCell.Offset(1, 0).Select
' obsolete logic
'Find First full cell UP
'ActiveCell.Offset(0, 1).Select
' Do
'ActiveCell.Value = Mid(ActiveCell.Value, 6)
' ActiveCell.Offset(-1, 0).Select
' If IsEmpty(ActiveCell) Then
' Exit Do
' End If
' Loop
' ActiveCell.Offset(0, -1).Select
' ActiveCell.Value = ActiveCell.Address
' Range("D2").Value = ActiveCell.Address
End Sub