-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchivereader.bas
99 lines (63 loc) · 2.51 KB
/
archivereader.bas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
Sub readResults()
' This is intended to be used in another workbook named "WheelData.xlsm"
' Use this to sum all of the results in ArchivedResults.csv
' -> useful for creating a stacked percentage chart.
On Error GoTo finishUp
With Application
.DisplayAlerts = False
.ScreenUpdating = False
End With
Dim wheeldata As Workbook
Dim datasheet As Worksheet
Dim archivePath, archivefilepath, archiveStr As String
Dim values, totalrows As Integer
Dim theheader As Boolean
Set wheeldata = Workbooks("wheelData")
Set datasheet = wheeldata.Worksheets("Sheet1")
' Change this to the folder containing ArchivedResults.csv
archivePath = "C:\path\to\folder\"
archivefilepath = archivePath & "ArchivedResults.csv"
With datasheet
Columns("A:L").Delete
DoEvents
values = 0
For Each cell In .Range("$A$1:$L$1")
values = values + 1
cell.Value = values
.Range(cell.Address).Offset(1, 0) = 0
DoEvents
Next cell
DoEvents
Open archivefilepath For Input As #1
theheader = True
Do Until EOF(1)
totalrows = .Range("A1").End(xlDown).Row
Debug.Print "totalrows: " & totalrows
Line Input #1, archiveStr
Debug.Print archiveStr
If theheader <> True Then
For Each cell In .Range("$A$1:$L$1")
If cell.Value = archiveStr Then
.Range(cell.Address).Offset(totalrows, 0) = _
.Range(cell.Address).Offset(totalrows - 1, 0) + 1
Else
.Range(cell.Address).Offset(totalrows, 0) = _
.Range(cell.Address).Offset(totalrows - 1, 0)
End If
Next cell
Else
theheader = False
End If
Loop
Close #1
DoEvents
noerrors = True
.Rows("2:2").Delete Shift:=xlUp
DoEvents
.ListObjects.Add(xlSrcRange, Range("$A$1:$L$101"), , xlYes).Name = _
"Table3"
End With
finishUp:
Application.ScreenUpdating = True
If noerrors <> True Then MsgBox "Something is wrong! Did you remember to change archivePath?"
End Sub