Форум программистов, компьютерный форум, киберфорум
VBA
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.85/13: Рейтинг темы: голосов - 13, средняя оценка - 4.85
0 / 0 / 0
Регистрация: 15.01.2015
Сообщений: 4
1

Оптимизация макроса в Excel

15.01.2015, 16:18. Показов 2606. Ответов 7
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Приветствую! Возникла небольшая проблема, макрос работает идеально, но с большим объемом информации не справляется, для этого разделил на 3 кнопки. Нужен совет для оптимизации этого макроса, заранее спасибо.

Visual Basic
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
Sub w1sws()
 
Dim a As Range
Dim options As Long
Dim opt As Long
Dim o As Long
Dim Results As Long
Dim re As Long
Dim KeywordsC As Long
Dim KeywordsC2 As Long
Dim KeywordsC3 As Long
Dim ResultFields As Long
    Dim Counter As Integer
    Dim RowMax As Integer, ColMax As Integer
    Dim r As Integer, c As Integer
    Dim PctDone As Single
    Dim pi As New ProgressIndicator
    
    
pi.Show "Progress"  'Для вывода прогрессбара
KeywordsC = 2
KeywordsC2 = 3
KeywordsC3 = 4
options = Worksheets(1).Range("E:E").Cells.SpecialCells(xlCellTypeConstants).Count
'заполненные строки
opt = options - 1
'-1на строка с заголовком
o = opt + 5
'с 5й начинаеться
' такая схема не учитывает кол-во пустых строк (10заполнил 1 пропустил ищет 11 клеток а не 12)
'LastRow = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
ResultFields = 5
'Вывод колонок с результатами
Results = Worksheets(2).Range("B:B").Cells.SpecialCells(xlCellTypeConstants).Count
re = Results + 1
Worksheets(2).Cells(1, 3) = "Группа"
Worksheets(2).Cells(1, 4) = "Тип"
Worksheets(2).Cells(1, 5) = "Модель"
Worksheets(2).Cells(1, 6) = "Проверки"
'Определение параметров прогрессбара
pi.StartNewAction 0, 95, "Porocess", , , o * 3
'Далее классификация по уровням
 
For j = 6 To o
 
pi.SubAction , "$index & $count" 'Вывод прогрессбара и его обновление     , "$time" + время
 Set a = Worksheets(2).Range("B1:B" & re).Find(What:=Worksheets(1).Cells(j, KeywordsC), LookIn:=xlValues, Lookat:=xlPart, MatchCase:=False)
    If Not a Is Nothing Then
    firstaddress = a.Address
        Do
        For i = 1 To ResultFields
        If IsEmpty(a.Offset(0, i)) And IsEmpty(a.Offset(0, i + 1)) Then
        a.Offset(0, i).Value = Worksheets(1).Cells(j, i + KeywordsC + 2)
        End If
        Next i
    Set a = Worksheets(2).Range("B1:B" & re).FindNext(a)
    Loop While Not a Is Nothing And a.Address <> firstaddress
    End If
Next j
 
For j = 6 To o
 
pi.SubAction , "$index & $count"
 Set a = Worksheets(2).Range("B1:B" & re).Find(What:=Worksheets(1).Cells(j, KeywordsC2), LookIn:=xlValues, Lookat:=xlPart, MatchCase:=False)
    If Not a Is Nothing Then
    firstaddress = a.Address
        Do
        For i = 1 To ResultFields
        a.Offset(0, i).Value = Worksheets(1).Cells(j, i + KeywordsC2 + 1)
        Next i
    Set a = Worksheets(2).Range("B1:B" & re).FindNext(a)
    Loop While Not a Is Nothing And a.Address <> firstaddress
    End If
Next j
 
For j = 6 To o
 
pi.SubAction , "$index & $count"
 Set a = Worksheets(2).Range("B1:B" & re).Find(What:=Worksheets(1).Cells(j, KeywordsC3), LookIn:=xlValues, Lookat:=xlPart, MatchCase:=False)
    If Not a Is Nothing Then
    firstaddress = a.Address
        Do
        For i = 1 To ResultFields
        a.Offset(0, i).Value = Worksheets(1).Cells(j, i + KeywordsC3)
        Next i
    Set a = Worksheets(2).Range("B1:B" & re).FindNext(a)
    Loop While Not a Is Nothing And a.Address <> firstaddress
    End If
Next j
 
pi.Hide 'Убираем прогрессбар
Worksheets(2).[B:B].SpecialCells(xlCellTypeBlanks).EntireRow.Delete 'удаляем последнюю строку (т.к. она ошибочно заполняется)
 
End Sub
Sub Button7_Click()
 
Dim a As Range
Dim options As Long
Dim opt As Long
Dim o As Long
Dim Results As Long
Dim re As Long
Dim KeywordsC As Long
Dim KeywordsC2 As Long
Dim KeywordsC3 As Long
Dim ResultFields As Long
    Dim Counter As Integer
    Dim RowMax As Integer, ColMax As Integer
    Dim r As Integer, c As Integer
    Dim PctDone As Single
    Dim pi As New ProgressIndicator
   
 
pi.Show "Progress"
KeywordsC = 2
KeywordsC2 = 3
KeywordsC3 = 4
options = Worksheets(1).Range("E:E").Cells.SpecialCells(xlCellTypeConstants).Count
opt = options - 1
o = opt + 5
ResultFields = 5
Results = Worksheets(2).Range("B:B").Cells.SpecialCells(xlCellTypeConstants).Count
re = Results + 1
Worksheets(2).Cells(1, 3) = "Группа"
Worksheets(2).Cells(1, 4) = "Тип"
Worksheets(2).Cells(1, 5) = "Модель"
Worksheets(2).Cells(1, 6) = "Проверки"
pi.StartNewAction 0, 95, "Porocess", , , o
 
For j = 6 To o
 
pi.SubAction , "$index & $count"
 Set a = Worksheets(2).Range("B1:B" & re).Find(What:=Worksheets(1).Cells(j, KeywordsC), LookIn:=xlValues, Lookat:=xlPart, MatchCase:=False)
    If Not a Is Nothing Then
    firstaddress = a.Address
    Do
    For i = 1 To ResultFields
    If IsEmpty(a.Offset(0, i)) And IsEmpty(a.Offset(0, i + 1)) Then
    a.Offset(0, i).Value = Worksheets(1).Cells(j, i + KeywordsC + 2)
    End If
    Next i
                          
    Set a = Worksheets(2).Range("B1:B" & re).FindNext(a)
    Loop While Not a Is Nothing And a.Address <> firstaddress
    End If
  
Next j
 
pi.Hide
Worksheets(2).[B:B].SpecialCells(xlCellTypeBlanks).EntireRow.Delete
 
End Sub
Sub Button8_Click()
 
Dim a As Range
Dim options As Long
Dim opt As Long
Dim o As Long
Dim Results As Long
Dim re As Long
Dim KeywordsC As Long
Dim KeywordsC2 As Long
Dim KeywordsC3 As Long
Dim ResultFields As Long
    Dim Counter As Integer
    Dim RowMax As Integer, ColMax As Integer
    Dim r As Integer, c As Integer
    Dim PctDone As Single
    Dim pi As New ProgressIndicator
   
   
pi.Show "Progress"
KeywordsC = 2
KeywordsC2 = 3
KeywordsC3 = 4
options = Worksheets(1).Range("E:E").Cells.SpecialCells(xlCellTypeConstants).Count
opt = options - 1
o = opt + 5
ResultFields = 5
Results = Worksheets(2).Range("B:B").Cells.SpecialCells(xlCellTypeConstants).Count
re = Results + 1
Worksheets(2).Cells(1, 3) = "Группа"
Worksheets(2).Cells(1, 4) = "Тип"
Worksheets(2).Cells(1, 5) = "Модель"
Worksheets(2).Cells(1, 6) = "Проверки"
pi.StartNewAction 0, 95, "Porocess", , , o
 
For j = 6 To o
 
pi.SubAction , "$index & $count"
 Set a = Worksheets(2).Range("B1:B" & re).Find(What:=Worksheets(1).Cells(j, KeywordsC2), LookIn:=xlValues, Lookat:=xlPart, MatchCase:=False)
    If Not a Is Nothing Then
    firstaddress = a.Address
    Do
    For i = 1 To ResultFields
    a.Offset(0, i).Value = Worksheets(1).Cells(j, i + KeywordsC2 + 1)
    Next i
                          
    Set a = Worksheets(2).Range("B1:B" & re).FindNext(a)
    Loop While Not a Is Nothing And a.Address <> firstaddress
    End If
  
Next j
 
pi.Hide
Worksheets(2).[B:B].SpecialCells(xlCellTypeBlanks).EntireRow.Delete
 
End Sub
Sub Button9_Click()
 
Dim a As Range
Dim options As Long
Dim opt As Long
Dim o As Long
Dim Results As Long
Dim re As Long
Dim KeywordsC As Long
Dim KeywordsC2 As Long
Dim KeywordsC3 As Long
Dim ResultFields As Long
    Dim Counter As Integer
    Dim RowMax As Integer, ColMax As Integer
    Dim r As Integer, c As Integer
    Dim PctDone As Single
    Dim pi As New ProgressIndicator
    
pi.Show "Progress"
KeywordsC = 2
KeywordsC2 = 3
KeywordsC3 = 4
options = Worksheets(1).Range("E:E").Cells.SpecialCells(xlCellTypeConstants).Count
opt = options - 1
o = opt + 5
ResultFields = 5
Results = Worksheets(2).Range("B:B").Cells.SpecialCells(xlCellTypeConstants).Count
re = Results + 1
Worksheets(2).Cells(1, 3) = "Группа"
Worksheets(2).Cells(1, 4) = "Тип"
Worksheets(2).Cells(1, 5) = "Модель"
Worksheets(2).Cells(1, 6) = "Проверки"
pi.StartNewAction 0, 95, "Porocess", , , o
 
For j = 6 To o
pi.SubAction , "$index & $count"
 
Set a = Worksheets(2).Range("B1:B" & re).Find(What:=Worksheets(1).Cells(j, KeywordsC3), LookIn:=xlValues, Lookat:=xlPart, MatchCase:=False)
If Not a Is Nothing Then
    firstaddress = a.Address
    Do
    For i = 1 To ResultFields
    a.Offset(0, i).Value = Worksheets(1).Cells(j, i + KeywordsC3)
    Next i
                          
Set a = Worksheets(2).Range("B1:B" & re).FindNext(a)
Loop While Not a Is Nothing And a.Address <> firstaddress
End If
        
Next j
 
pi.Hide
Worksheets(2).[B:B].SpecialCells(xlCellTypeBlanks).EntireRow.Delete
 
End Sub
Sub Formatias(ByVal n As Long)
   Cells(n).Interior.ColorIndex = 15: Cells(n).BorderAround xlContinuous 'Подвязка модуля для прогрессбара
End Sub
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
15.01.2015, 16:18
Ответы с готовыми решениями:

Оптимизация макроса
Необходимо уменьшить временные затраты на выполнение фильтрации, так как обрабатывается огромное...

Оптимизация работы макроса
Ребят всех с наступающим поздравляю! Ребят, написал программу, работает быстро, не тормозит....

Оптимизация макроса для слабого железа
Здравствуйте. Нужна небольшая помощь в оптимизации маленького макроса. Смысл: Он берёт данные из...

Оптимизация простого макроса поиска и выборки
Здравствуйте уважаемые форумчане. Помогите мне пожалуйста оптимизировать макрос поиска. Не...

7
416 / 263 / 83
Регистрация: 27.10.2012
Сообщений: 861
15.01.2015, 18:05 2
Каждый, посмотрев в код сразу поймёт, что должен делать этот макрос.
В файле покажите что и как на "небольшом объёме" информации
0
0 / 0 / 0
Регистрация: 15.01.2015
Сообщений: 4
16.01.2015, 09:39  [ТС] 3
Задача макроса в том, чтобы классифицировать объекты по типу и моделям. Если запустить его в данном файле, он справится за считанные секунды, но если будет 100000 объектов, он будет справляться более 2х часов.
Вложения
Тип файла: rar Classifier_key_v17_DK.rar (120.4 Кб, 15 просмотров)
0
5612 / 1596 / 414
Регистрация: 23.12.2010
Сообщений: 2,392
Записей в блоге: 1
16.01.2015, 11:26 4
Небольшое ускорение: удалил Прогрессбар и добавил процедуры ускорения для Application.
Существенно ускорить может работа с массивами и/или словарями, но это равносильно выкидыванию старого кода.
Вложения
Тип файла: zip Classifier_key_v17_DK_2.zip (108.3 Кб, 6 просмотров)
0
0 / 0 / 0
Регистрация: 15.01.2015
Сообщений: 4
16.01.2015, 11:43  [ТС] 5
Значительно ускорило процесс, но работают только 2 кнопки) (1-го и 2-го порядка)
К сожалению я не могу доработать код, так как человек работающий с ним уволился.
Миниатюры
Оптимизация макроса в Excel  
0
5612 / 1596 / 414
Регистрация: 23.12.2010
Сообщений: 2,392
Записей в блоге: 1
16.01.2015, 11:54 6
Уволился - не ценили работу. Берегите VBA программистов.
Вложения
Тип файла: zip Classifier_key_v17_DK_3.zip (112.9 Кб, 11 просмотров)
2
0 / 0 / 0
Регистрация: 15.01.2015
Сообщений: 4
16.01.2015, 11:57  [ТС] 7
Благодарю, программирование не его профиль) он просто что то знал и мог в VBA
0
Модератор
Эксперт MS Access
12082 / 4942 / 791
Регистрация: 07.08.2010
Сообщений: 14,506
Записей в блоге: 4
16.01.2015, 12:31 8
забыли закомментировать строку
Visual Basic
1
2
3
4
For j = 6 To o
 
''Pi.SubAction , "$index & $count" 'Âûâîä ïðîãðåññáàðà è åãî îáíîâëåíèå     , "$time" + âðåìÿ
 Set a = Worksheets(2).Range("B1:B" & re).Find(What:=Worksheets(1).Cells(j, KeywordsC), LookIn:=xlValues, Lookat:=xlPart, MatchCase:=False)
1
16.01.2015, 12:31
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
16.01.2015, 12:31
Помогаю со студенческими работами здесь

Перебор всех возможных вариантов, оптимизация макроса
Всем доброго времени суток! Для калибровки скоринговой карты необходимо сделать подстановку всех...

Оптимизация макроса для удаления нулей в диапазоне
Уважаемые знатоки, имеется несложный макрос для удаления нулей Sub del() For o = 5 To 74 ...

Оптимизация скорости выполнения макроса переоформления таблицы
Задача следующая, требуется не оставить пользователю ни одного шанса испортить оформление таблицы....

Оптимизация автоматически созданного макроса на копирование ячеек и удаление строк
Здравствуйте! Записал макрос и добавил цикл с условием на пустую строку. Но строк более 40 тысяч, а...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
8
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru