-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEcel4AFactory.cls
229 lines (195 loc) · 7.95 KB
/
Ecel4AFactory.cls
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "Factory"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Option Explicit
Public Function MergePivotFieldsList(pageFields As Object, columnFields As Object, rowFields As Object) As Collection
Dim pf As PivotField
Dim pfi As PivotFieldrInfo
On Error GoTo 0
Set MergePivotFieldsList = New Collection
If Not pageFields Is Nothing Then
For Each pf In pageFields
Set pfi = New PivotFieldrInfo
MergePivotFieldsList.Add pfi.SetPivotField(pf, PageType)
Next pf
End If
If Not columnFields Is Nothing Then
For Each pf In columnFields
If IsNumeric(pf.GroupLevel) Then
Set pfi = New PivotFieldrInfo
MergePivotFieldsList.Add pfi.SetPivotField(pf, ColumnType)
End If
Next pf
End If
If Not rowFields Is Nothing Then
For Each pf In rowFields
If IsNumeric(pf.GroupLevel) Then
Set pfi = New PivotFieldrInfo
MergePivotFieldsList.Add pfi.SetPivotField(pf, RowType)
End If
Next pf
End If
End Function
Public Function FindPivotFieldInfo(pivotFields As pivotFields, fieldName As String, pivotType As PivotTypes) As PivotFieldrInfo
On Error Resume Next
Set FindPivotFieldInfo = Nothing
If IsEmpty(fieldName) = True Or fieldName = Empty Then GoTo Done
Dim pf As PivotField: Set pf = pivotFields(fieldName)
If pf Is Nothing Then
If pivotType = PageType Then
For Each pf In pivotFields
If pf.SourceName = fieldName Then
Exit For
End If
Next pf
Else
For Each pf In pivotFields
If IsNumeric(pf.GroupLevel) And pf.SourceName = fieldName Then
Exit For
End If
Next pf
End If
End If
Set FindPivotFieldInfo = New PivotFieldrInfo
Call FindPivotFieldInfo.SetPivotField(pf, pivotType)
Done:
On Error GoTo 0
End Function
Function GetFilterInfoForField(wsFilterArray() As Variant, WSName As String, pivotTblName As String, fieldName As String) As WSFilterData
Dim foundPivotTbl As Boolean: foundPivotTbl = False
Dim i As Integer
'On Error Resume Next
Set GetFilterInfoForField = Nothing
For i = LBound(wsFilterArray, 1) To UBound(wsFilterArray, 1)
If wsFilterArray(i, 1) = WSName Then
If wsFilterArray(i, 2) = pivotTblName Then
foundPivotTbl = True
If wsFilterArray(i, 3) = fieldName Then
Set GetFilterInfoForField = New WSFilterData
GetFilterInfoForField.Active = True
GetFilterInfoForField.WSName = wsFilterArray(i, 1)
GetFilterInfoForField.PTName = wsFilterArray(i, 2)
GetFilterInfoForField.FldName = wsFilterArray(i, 3)
GetFilterInfoForField.pvtFldType = wsFilterArray(i, 5)
GetFilterInfoForField.StaticFilterValue = wsFilterArray(i, 4)
GetFilterInfoForField.SetFilterValue = wsFilterArray(i, 6)
GetFilterInfoForField.LblType = wsFilterArray(i, 7)
GetFilterInfoForField.LblValue1 = wsFilterArray(i, 8)
GetFilterInfoForField.LblValue2 = wsFilterArray(i, 9)
GetFilterInfoForField.ValType = wsFilterArray(i, 10)
GetFilterInfoForField.ValValue1 = wsFilterArray(i, 11)
GetFilterInfoForField.ValValue2 = wsFilterArray(i, 12)
Exit For
End If
Else
If foundPivotTbl Then
Exit For
End If
End If
Else
If foundPivotTbl Then
Exit For
End If
End If
Next i
End Function
Function GetPivotFilterInfoForPivotTbl(wsFilterArray() As Variant, WSName As String, pivotTblName As String) As Collection
Dim foundPivotTbl As Boolean: foundPivotTbl = False
Dim i As Integer
Dim wsInfo As WSFilterData
'On Error Resume Next
Set GetPivotFilterInfoForPivotTbl = New Collection
For i = LBound(wsFilterArray, 1) To UBound(wsFilterArray, 1)
If wsFilterArray(i, 1) = WSName Then
If wsFilterArray(i, 2) = pivotTblName Then
foundPivotTbl = True
Set wsInfo = New WSFilterData
wsInfo.Active = True
wsInfo.WSName = wsFilterArray(i, 1)
wsInfo.PTName = wsFilterArray(i, 2)
wsInfo.FldName = wsFilterArray(i, 3)
wsInfo.pvtFldType = wsFilterArray(i, 5)
wsInfo.StaticFilterValue = wsFilterArray(i, 4)
wsInfo.SetFilterValue = wsFilterArray(i, 6)
wsInfo.LblType = wsFilterArray(i, 7)
wsInfo.LblValue1 = wsFilterArray(i, 8)
wsInfo.LblValue2 = wsFilterArray(i, 9)
wsInfo.ValType = wsFilterArray(i, 10)
wsInfo.ValValue1 = wsFilterArray(i, 11)
wsInfo.ValValue2 = wsFilterArray(i, 12)
GetPivotFilterInfoForPivotTbl.Add wsInfo
Else
If foundPivotTbl Then
Exit For
End If
End If
Else
If foundPivotTbl Then
Exit For
End If
End If
Next i
End Function
Function GetRowExpandInfoForField(wsExpandArray() As Variant, WSName As String, pivotTblName As String, fieldName As String) As WSRowExpandData
Dim foundPivotTbl As Boolean: foundPivotTbl = False
Dim i As Integer
Set GetRowExpandInfoForField = Nothing
For i = LBound(wsExpandArray, 1) To UBound(wsExpandArray, 1)
If wsExpandArray(i, 1) = WSName Then
If wsExpandArray(i, 2) = pivotTblName Then
foundPivotTbl = True
If wsExpandArray(i, 3) = fieldName Then
Set GetRowExpandInfoForField = New WSRowExpandData
GetRowExpandInfoForField.Active = True
GetRowExpandInfoForField.WSName = wsExpandArray(i, 1)
GetRowExpandInfoForField.PTName = wsExpandArray(i, 2)
GetRowExpandInfoForField.FldName = wsExpandArray(i, 3)
GetRowExpandInfoForField.ExpandRow = wsExpandArray(i, 4)
Exit For
End If
Else
If foundPivotTbl Then
Exit For
End If
End If
Else
If foundPivotTbl Then
Exit For
End If
End If
Next i
End Function
Function GetRowExpandInforPivotTbl(wsExpandArray() As Variant, WSName As String, pivotTblName As String) As Collection
Dim foundPivotTbl As Boolean: foundPivotTbl = False
Dim rowInfo As WSRowExpandData
Dim i As Integer
Set GetRowExpandInforPivotTbl = New Collection
For i = LBound(wsExpandArray, 1) To UBound(wsExpandArray, 1)
If wsExpandArray(i, 1) = WSName Then
If wsExpandArray(i, 2) = pivotTblName Then
foundPivotTbl = True
Set rowInfo = New WSRowExpandData
rowInfo.Active = True
rowInfo.WSName = wsExpandArray(i, 1)
rowInfo.PTName = wsExpandArray(i, 2)
rowInfo.FldName = wsExpandArray(i, 3)
rowInfo.ExpandRow = wsExpandArray(i, 4)
GetRowExpandInforPivotTbl.Add rowInfo
Else
If foundPivotTbl Then
Exit For
End If
End If
Else
If foundPivotTbl Then
Exit For
End If
End If
Next i
End Function