Thanks IDE
Here is the finnished code (execept the chart stuff see my next post!!)
Sub tasks()
Dim myOlApp, myNameSpace, myFolder, myRange As Object
Set myOlApp = CreateObject("Outlook.Application"

Set myNameSpace = myOlApp.GetNamespace("MAPI"

ActiveSheet.Range("A1"

.Activate
Set myFolder = myNameSpace.Folders(ActiveCell.Offset(0, 0).Value)
i = 1
'myFolder.display
While ActiveCell.Offset(0, i).Value <> "" 'step the path
Set myFolder = myFolder.Folders(ActiveCell.Offset(0, i).Value)
i = i + 1
Wend
'Set myFolder = Application.ActiveExplorer.CurrentFolder 'get the currentfolder
'MsgBox myFolder.Name
ActiveCell.Offset(2, 0) = "Subject"
ActiveCell.Offset(2, 1) = "DueDate"
ActiveCell.Offset(2, 2) = "DateCompleted"
ActiveCell.Offset(2, 3) = "StartDate"
ActiveCell.Offset(2, 4) = "Status"
ActiveCell.Offset(2, 5) = "PercentComplete"
ActiveCell.Offset(2, 6) = "Complete"
ActiveCell.Offset(2, 7) = "Accuracy"
For i = 1 To myFolder.Items.Count 'get the all items one by one
If myFolder.Items(i).DueDate = "1/1/4501" Then
strDate = "None"
Else
strDate = myFolder.Items(i).DueDate
End If
If myFolder.Items(i).Datecompleted = "1/1/4501" Then
strfDate = "Not Completed"
Else
strfDate = myFolder.Items(i).Datecompleted
End If
If myFolder.Items(i).StartDate = "1/1/4501" Then
strfsDate = "None"
Else
strfsDate = myFolder.Items(i).StartDate
End If
ActiveCell.Offset(i + 2, 0) = myFolder.Items(i).Subject
ActiveCell.Offset(i + 2, 1) = strDate 'myFolder.Items(i).DueDate
ActiveCell.Offset(i + 2, 2) = strfDate 'myFolder.Items(i).Datecompleted
ActiveCell.Offset(i + 2, 3) = strfsDate 'myFolder.Items(i).StartDate
ActiveCell.Offset(i + 2, 4) = myFolder.Items(i).Status
ActiveCell.Offset(i + 2, 5) = myFolder.Items(i).PercentComplete
ActiveCell.Offset(i + 2, 6) = myFolder.Items(i).Complete
If strDate = "None" Or strfDate = "Not Completed" Then
ActiveCell.Offset(i + 2, 7) = "N/A"
Else
ActiveCell.Offset(i + 2, 7) = "=IF(RC[-5]>0,RC[-5]-RC[-6],""N/A""

"
End If
Next i
'Cells(2, 1).Value = "Subject"
Columns("A:A"

.Select
Selection.ColumnWidth = 40
Selection.Font.Size = 10
'Selection.HorizontalAlignment = xlCenter
'Cells(2, 2).Value = "due date"
Columns("B:B"

.Select
Selection.ColumnWidth = 10
Selection.HorizontalAlignment = xlCenter
'Cells(2, 3).Value = "Date Completed"
Columns("C:C"

.Select
Selection.ColumnWidth = 15
Selection.HorizontalAlignment = xlCenter
'Cells(2, 4).Value = "Date Started"
Columns("D

"

.Select
Selection.ColumnWidth = 10
Selection.HorizontalAlignment = xlCenter
'Cells(2, 5).Value = "Status"
Columns("E:E"

.Select
Selection.ColumnWidth = 6
Selection.HorizontalAlignment = xlCenter
'Cells(2, 6).Value = "Percent Complete"
Columns("F:F"

.Select
Selection.ColumnWidth = 10
Selection.HorizontalAlignment = xlCenter
Columns("G:G"

.Select
Selection.ColumnWidth = 10
Selection.HorizontalAlignment = xlCenter
Columns("H:H"

.Select
Selection.ColumnWidth = 10
Selection.HorizontalAlignment = xlCenter
'Set Date and Name at top
ActiveSheet.Range("A1"

.Activate
ActiveCell.Offset(0, 0) = myFolder
ActiveCell.Offset(0, 1) = Date
ActiveCell.Offset(0, 2) = " "
'Making headers bold
Rows(1).Select
Selection.Font.Bold = True
Selection.Font.Size = 12
Selection.Font.Underline = True
Rows(3).Select
Selection.Font.Bold = True
Selection.Font.Size = 10
Selection.Font.Underline = True
'Selection.HorizontalAlignment = xlCenter
ActiveSheet.Range("B4"

.Activate
ActiveCell.Sort Key1:=Range("B4"

, Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
Set myOlApp = Nothing
a = i + 3
'Make Chart
Charts.Add
ActiveChart.ChartType = xlLineMarkersStacked
ActiveChart.SetSourceData Source:=Sheets("Tasks"

.Range("A3:A12,H3:H12"

, _
PlotBy:=xlColumns
ActiveChart.Location Where:=xlLocationAsNewSheet, Name:="Chart"
With ActiveChart
.HasTitle = True
.ChartTitle.Characters.Text = "Analysis for " & myFolder
.Axes(xlCategory, xlPrimary).HasTitle = True
.Axes(xlCategory, xlPrimary).AxisTitle.Characters.Text = "Subject"
.Axes(xlValue, xlPrimary).HasTitle = True
.Axes(xlValue, xlPrimary).AxisTitle.Characters.Text = "Accuracy"
End With
With ActiveChart
.HasAxis(xlCategory, xlPrimary) = True
.HasAxis(xlValue, xlPrimary) = True
End With
ActiveChart.Axes(xlCategory, xlPrimary).CategoryType = xlCategoryScale
With ActiveChart.Axes(xlCategory)
.HasMajorGridlines = False
.HasMinorGridlines = False
End With
With ActiveChart.Axes(xlValue)
.HasMajorGridlines = False
.HasMinorGridlines = False
End With
ActiveChart.HasLegend = False
Sheets("Chart"

.Select
End Sub