-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcleanServices.vb
806 lines (786 loc) · 36.4 KB
/
cleanServices.vb
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
Sub CleanServices2()
Dim sh As Worksheet
Dim Prompt As String
Dim DestSh As Worksheet
Dim Firstrow As Integer
Dim Last As Long
Dim shLast As Long
Dim checkrange As Range
Dim checkarea As Range
Dim checkrow As Range
Dim StartRow As Long
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
' Delete unneccssary sheets.
Application.DisplayAlerts = False
On Error Resume Next
'ActiveWorkbook.Worksheets("LOVs").Delete
'ActiveWorkbook.Worksheets("Complete - Presales - Scoping").Delete
'ActiveWorkbook.Worksheets("Cold Projects").Delete
'ActiveWorkbook.Worksheets("Closed Projects").Delete
'ActiveWorkbook.Worksheets("Project Tracking - GPAGE").Delete
'ActiveWorkbook.Worksheets("Archive Desk Complete").Delete
'ActiveWorkbook.Worksheets("Archive Cold Projects").Delete
'ActiveWorkbook.Worksheets("Archive Closed Projects").Delete
'ActiveWorkbook.Worksheets("Project Pipeline").Delete
'ActiveWorkbook.Worksheets("New WM Mapping").Delete
On Error GoTo 0
' Choose Sheet to Clean
Prompt = ("Which worksheet do you want to clean?")
DynamicForm.PromptLabel.Caption = Prompt
DynamicForm.DynamicComboBox.RowSource = "Sheets"
DynamicForm.Show
'destshname = InputBox(Prompt:="Which worksheet do you want to clean?", Title:="Clean which sheet?", Default:="")
Set DestSh = ActiveWorkbook.Worksheets(CheckValue)
DynamicForm.DynamicComboBox = ""
' Fill in the start row.--- Not Used See below check to get seccond row of data
'If DestSh.Name = "Project Pipeline" Then
StartRow = InputBox(Prompt:="Which row would you like to start checking at?", Title:="Start Row?", Default:=2)
'Else
'StartRow = 2
'End If
Last = Lastrow(DestSh)
Firstrow = StartRow
Set checkrange = Range(Cells(Firstrow, "A"), Cells(Last, "AP"))
'MsgBox ("Range " & checkrange.Address)
With DestSh
.DisplayPageBreaks = False
For Each checkrow In checkrange.Rows
' Service Types Rename
If .Cells(checkrow.Row, "L") = "3 Month UCS Optimization" Then
.cells(checkrow.row,"L").value = "Unified Computing Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "Accelerated Deployment" Then
.cells(checkrow.row,"L").value = "Fixed-price Cisco Unified Computing Accelerated Deployment Service"
End IF
If .Cells(checkrow.Row, "L") = "Accelerated Design/Deployment services for SAN Fabric" Then
.cells(checkrow.row, "L").value = "Unified Computing Accelerated Deployment Service"
End IF
If .Cells(checkrow.Row, "L") = "ACE PD" Then
.cells(checkrow.row, "L").value = "Application Control Engine Planning and Design Service (ACE)"
End IF
If .Cells(checkrow.Row, "L") = "ACE PDI" Then
.cells(checkrow.row, "L").value = "Application Control Engine Planning and Design Service (ACE)"
End IF
If .Cells(checkrow.Row, "L") = "ADS" Then
.cells(checkrow.row, "L").value = "Application Dependency Mapping Service"
End IF
If .Cells(checkrow.Row, "L") = "Architectural Value Analysis" Then
.cells(checkrow.row, "L").value = "Architecture Value Analysis Service"
End IF
If .Cells(checkrow.Row, "L") = "Architecture Assessment" Then
.cells(checkrow.row, "L").value = "Architecture Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "ASF-ULT2-UCS-AA - Architecture Assessment" Then
.cells(checkrow.row, "L").value = "Architecture Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "ASF-ULT2-UCS-ADS - UCS Accelerated Deployment" Then
.cells(checkrow.row, "L").value = "Fixed-price Cisco Unified Computing Accelerated Deployment Service"
End IF
If .Cells(checkrow.Row, "L") = "ASF-ULT2-UCS-PP" Then
.cells(checkrow.row, "L").value = "Fixed-price Cisco Unified Computing Preproduction Pilot Service"
End IF
If .Cells(checkrow.Row, "L") = "ASF-ULT2-UCS-PP - UCS Pre-Production Pilot" Then
.cells(checkrow.row, "L").value = "Fixed-price Cisco Unified Computing Preproduction Pilot Service"
End IF
If .Cells(checkrow.Row, "L") = "CCP" Then
.cells(checkrow.row, "L").value = "IA: Cloud Portal"
End IF
If .Cells(checkrow.Row, "L") = "Cisco Tidal Deployment Service for Tidal Enterprise Scheduler" Then
.cells(checkrow.row, "L").value = "IA: Enterprise Scheduler"
End IF
If .Cells(checkrow.Row, "L") = "Cisco Workplace Portal" Then
.cells(checkrow.row, "L").value = "IA: Workplace"
End IF
If .Cells(checkrow.Row, "L") = "Cisco Workplace Portal enhancements" Then
.cells(checkrow.row, "L").value = "IA: Workplace"
End IF
If .Cells(checkrow.Row, "L") = "CON-AS-DCN-PD - Subscription Data Center Planning and Design Services" Then
.cells(checkrow.row, "L").value = "Nexus Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "CON-AS-UCS-PD: UCS Quote - PDI" Then
.cells(checkrow.row, "L").value = "Unified Computing Planning, Design and Implementation Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Architecture Services " Then
.cells(checkrow.row, "L").value = "Architecture Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Assesment" Then
.cells(checkrow.row, "L").value = "Architecture Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Assessment " Then
.cells(checkrow.row, "L").value = "Architecture Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Assment" Then
.cells(checkrow.row, "L").value = "Architecture Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Migration" Then
.cells(checkrow.row, "L").value = "Data Center Migration Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Network Assessment" Then
.cells(checkrow.row, "L").value = "Data Center Network Assessment"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Network Assessment High-Level and Low-Level Design Review Knowledge Transfer (remote)" Then
.cells(checkrow.row, "L").value = "Data Center Network Assessment"
End If
If .Cells(checkrow.Row, "L") = "Data Center Networking Assessment" Then
.cells(checkrow.row, "L").value = "Data Center Network Assessment"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Optimization" Then
.cells(checkrow.row, "L").value = "Data Center Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Value Analysis and Strategy and Architecture" Then
.cells(checkrow.row, "L").value = "Architecture Value Analysis Service"
End IF
If .Cells(checkrow.Row, "L") = "DCN Optimization" Then
.cells(checkrow.row, "L").value = "Data Center Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "DCN PD" Then
.cells(checkrow.row, "L").value = "Data Center Networking Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "DCN Scoping" Then
.cells(checkrow.row, "L").value = "DCN Scoping"
End IF
If .Cells(checkrow.Row, "L") = "Nexus implementation" Then
.cells(checkrow.row, "L").value = "Nexus implementation"
End IF
If .Cells(checkrow.Row, "L") = "Nexus Implementation Service for up to 8 Cisco Nexus 7000 " Then
.cells(checkrow.row, "L").value = "Nexus implementation"
End IF
If .Cells(checkrow.Row, "L") = "Nexus PD" Then
.cells(checkrow.row, "L").value = "Nexus Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus Planning and Design" Then
.cells(checkrow.row, "L").value = "Nexus Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "Planning and Design services for Nexus 1000v" Then
.cells(checkrow.row, "L").value = "Nexus Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "Preproduction pilot" Then
.cells(checkrow.row, "L").value = "Fixed-price Cisco Unified Computing Preproduction Pilot Service"
End IF
If .Cells(checkrow.Row, "L") = "Presales" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "Presales " Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "Presales/Scoping" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "PresalesRFP" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "PresalesSME" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "PresalesUCS POC" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "Remote Presalesengament management for large Nexus,UCS,VDI & ASA Project -- remote meetings" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "RFI" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "RFP" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "SAN Assessment" Then
.cells(checkrow.row, "L").value = "SAN Health Check Service"
End IF
If .Cells(checkrow.Row, "L") = "SAN Health Check" Then
.cells(checkrow.row, "L").value = "SAN Health Check Service"
End IF
If .Cells(checkrow.Row, "L") = "SAN Healthcheck" Then
.cells(checkrow.row, "L").value = "SAN Health Check Service"
End IF
If .Cells(checkrow.Row, "L") = "SAN Optimization" Then
.cells(checkrow.row, "L").value = "SAN Optimization"
End IF
If .Cells(checkrow.Row, "L") = "SAN Scoping" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "Scoping" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "Scoping ADM" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "Scoping Data Center Migration - Phase 2" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "SME for RFP" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "Solaris Migration and Private IaaS Cloud Acceleration Services" Then
.cells(checkrow.row, "L").value = "Cloud Enablement Services for Building IaaS Clouds"
End IF
If .Cells(checkrow.Row, "L") = "SOW Based Accelerated Deployment" Then
.cells(checkrow.row, "L").value = "Unified Computing Accelerated Deployment Service"
End IF
If .Cells(checkrow.Row, "L") = "Start-Up Accelerator" Then
.cells(checkrow.row, "L").value = "Fixed-price Cisco Unified Computing Start-Up Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Migration" Then
.cells(checkrow.row, "L").value = "Unified Computing Migration and Transition Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Opportunity" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "UCS Optimization" Then
.cells(checkrow.row, "L").value = "Unified Computing Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Optimziation (3 Year)" Then
.cells(checkrow.row, "L").value = "Unified Computing Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS PDI" Then
.cells(checkrow.row, "L").value = "Unified Computing Planning, Design and Implementation Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS PPP" Then
.cells(checkrow.row, "L").value = "Unified Computing Preproduction Pilot Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Pre-Production Pilot" Then
.cells(checkrow.row, "L").value = "Unified Computing Preproduction Pilot Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Scoping" Then
.cells(checkrow.row, "L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "UCS Start Up Accelerator" Then
.cells(checkrow.row, "L").value = "Fixed-price Cisco Unified Computing Start-Up Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Startup Accelerator" Then
.cells(checkrow.row, "L").value = "Fixed-price Cisco Unified Computing Start-Up Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Start-Up Accelerator" Then
.cells(checkrow.row, "L").value = "Fixed-price Cisco Unified Computing Start-Up Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "Unified Computing Optimization Service" Then
.cells(checkrow.row, "L").value = "Unified Computing Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "Unified Fabric Optimization Service" Then
.cells(checkrow.row, "L").value = "Unified Fabric Optimization"
End IF
If .Cells(checkrow.Row, "L") = "Unified Fabric Optimization Service " Then
.cells(checkrow.row, "L").value = "Unified Fabric Optimization"
End IF
If .Cells(checkrow.Row, "L") = "WAAS" Then
.cells(checkrow.row, "L").value = "Wide Area Application Services Planning and Design Service (WAAS)"
End IF
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
If .Cells(checkrow.Row, "L") = "ACE PD" Then
.cells(checkrow.row,"L").value = "Application Control Engine Planning and Design Service (ACE)"
End IF
If .Cells(checkrow.Row, "L") = "ACE PDI" Then
.cells(checkrow.row,"L").value = "Application Control Engine Planning, Design and Implmentation Service (ACE)"
End IF
If .Cells(checkrow.Row, "L") = "ADS" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "ANS" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Architectural Value Analysis" Then
.cells(checkrow.row,"L").value = "Architecture Value Analysis Service"
End IF
If .Cells(checkrow.Row, "L") = "Architecture Evaluation" Then
.cells(checkrow.row,"L").value = "Architecture Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "AS DCN CNSLT" Then
.cells(checkrow.row,"L").value = "AS DCN CNSLT"
End IF
If .Cells(checkrow.Row, "L") = "AS_DCN_CNSLT" Then
.cells(checkrow.row,"L").value = "AS DCN CNSLT"
End IF
If .Cells(checkrow.Row, "L") = "AS-DCN-SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "ASF-ULT2-UCS-AA - Architecture Assessment" Then
.cells(checkrow.row,"L").value = "Architecture Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "AS-UCS-CNSLT - RISC Migration Acceleration Service" Then
.cells(checkrow.row,"L").value = "Unified Computing Database Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "BMC Deployment " Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "CAP" Then
.cells(checkrow.row,"L").value = "CAP"
End IF
If .Cells(checkrow.Row, "L") = "CAP B440 Replacement " Then
.cells(checkrow.row,"L").value = "CAP"
End IF
If .Cells(checkrow.Row, "L") = "CIAC" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CIA-C" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CIAC - Plan, Build, Design" Then
.cells(checkrow.row,"L").value = "IA: Full Cloud"
End IF
If .Cells(checkrow.Row, "L") = "CIAC - SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "CIAC Cloud Builder Accelerator" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CIAC Consultant" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "CIAC Deployment" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CIAC Implementation" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CIAC Implmentation" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CIAC Integration" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CIA-C PaaS" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CIAC PDI" Then
.cells(checkrow.row,"L").value = "IA: Full Cloud"
End IF
If .Cells(checkrow.Row, "L") = "CIAC PDI" Then
.cells(checkrow.row,"L").value = "IA: Full Cloud"
End IF
If .Cells(checkrow.Row, "L") = "CIAC Plan and Build Services" Then
.cells(checkrow.row,"L").value = "IA: Full Cloud"
End IF
If .Cells(checkrow.Row, "L") = "CIA-C POC" Then
.cells(checkrow.row,"L").value = "CIAC POC"
End IF
If .Cells(checkrow.Row, "L") = "CIAC Presales" Then
.cells(checkrow.row,"L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "CIAC Public" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CIAC SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "CIA-C Start" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "CISCO IT OESE: PAAS TIDAL" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "Cisco Tidal Deployment Service for Tidal Enterprise Scheduler" Then
.cells(checkrow.row,"L").value = "IA: Enterprise Scheduler"
End IF
If .Cells(checkrow.Row, "L") = "CITIES Express" Then
.cells(checkrow.row,"L").value = "CIAC"
End IF
If .Cells(checkrow.Row, "L") = "Cloud" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Cloud Advisory Services" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Cloud build" Then
.cells(checkrow.row,"L").value = "IA: Full Cloud"
End IF
If .Cells(checkrow.Row, "L") = "Cloud Builder Accelerator Program" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Cloud Computing Strategy Consulting Services " Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Cloud growth" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Cloud Portal Demo" Then
.cells(checkrow.row,"L").value = "IA: Cloud Portal"
End IF
If .Cells(checkrow.Row, "L") = "Cloud Portal Plan & Build" Then
.cells(checkrow.row,"L").value = "IA: Cloud Portal"
End IF
If .Cells(checkrow.Row, "L") = "CNOAS" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "CON-AS-DCN-PD - Subscription Data Center Planning and Design Services" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "CON-AS-UCS-PD: UCS Quote - PDI" Then
.cells(checkrow.row,"L").value = "Unified Computing Planning, Design and Implementation Service"
End IF
If .Cells(checkrow.Row, "L") = "Consulting Assistance" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Assesment" Then
.cells(checkrow.row,"L").value = "Data Center Facilities Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Assessment " Then
.cells(checkrow.row,"L").value = "Data Center Facilities Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Assment" Then
.cells(checkrow.row,"L").value = "Data Center Facilities Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Migration" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Networking Assessment " Then
.cells(checkrow.row,"L").value = "Data Center Network Assessment"
End IF
If .Cells(checkrow.Row, "L") = "Data Center Strategy and Architecture Blueprint" Then
.cells(checkrow.row,"L").value = "Data Center Architecture Workshop"
End IF
If .Cells(checkrow.Row, "L") = "DCN Bundle PDI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "DCN Consulting" Then
.cells(checkrow.row,"L").value = "AS DCN CNSLT"
End IF
If .Cells(checkrow.Row, "L") = "DCN DI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "DCN Optimization" Then
.cells(checkrow.row,"L").value = "Data Center Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "DCN OTV" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "DCN PD" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "DCN PDI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "DCN PDI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "DCN Scoping" Then
.cells(checkrow.row,"L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "DCN SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "DCN SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "Demonstrator" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Disaster Recovery Gap Analysis" Then
.cells(checkrow.row,"L").value = "Disaster Recovery Planning and Implementation"
End IF
If .Cells(checkrow.Row, "L") = "Disaster Recovery Planning and Implementation" Then
.cells(checkrow.row,"L").value = "Disaster Recovery Planning and Implementation"
End IF
If .Cells(checkrow.Row, "L") = "eCDS PDI Services" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "eCDS PDI Services" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "GLaaS workshops - Phase1" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "HLD" Then
.cells(checkrow.row,"L").value = "AS DCN CNSLT"
End IF
If .Cells(checkrow.Row, "L") = "LDAP/SSO customi" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "MDS Data Migration" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Multiple Servcies - UCS, DCN, TS" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "N1K SME" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "NewScale" Then
.cells(checkrow.row,"L").value = "IA: Enterprise Scheduler"
End IF
If .Cells(checkrow.Row, "L") = "NewScale Enablement Services" Then
.cells(checkrow.row,"L").value = "IA: Enterprise Scheduler"
End IF
If .Cells(checkrow.Row, "L") = "Nexus 1K install & config" Then
.cells(checkrow.row,"L").value = "Nexus implementation"
End IF
If .Cells(checkrow.Row, "L") = "Nexus Implementation Service for up to 8 Cisco Nexus 7000 " Then
.cells(checkrow.row,"L").value = "Nexus implementation"
End IF
If .Cells(checkrow.Row, "L") = "Nexus IPD" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus LLD review" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Nexus Migration" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Nexus Optimization" Then
.cells(checkrow.row,"L").value = "Data Center Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus Optimization" Then
.cells(checkrow.row,"L").value = "Data Center Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus Optimization " Then
.cells(checkrow.row,"L").value = "Data Center Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus PD" Then
.cells(checkrow.row,"L").value = "Nexus Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus PDI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus PDI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus PDI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus PDI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus PDI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus PDI" Then
.cells(checkrow.row,"L").value = "Data Center Networking Planning, Design and Implemntation Service"
End IF
If .Cells(checkrow.Row, "L") = "Nexus SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "Nexus SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "Not Booked 5/3 Nexus LLD" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "OTV SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "Phase 5/6" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Plan and Design Subscription Services - Wireless LAN" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Planning and Design services for Nexus 1000v" Then
.cells(checkrow.row,"L").value = "Nexus Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "POC" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "POL - UCS POC" Then
.cells(checkrow.row,"L").value = "UCS POC"
End IF
If .Cells(checkrow.Row, "L") = "Presales" Then
.cells(checkrow.row,"L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "RC Implementation" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "RC Implementation" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "RISC" Then
.cells(checkrow.row,"L").value = "Unified Computing Database Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "RISC to UCS Migration" Then
.cells(checkrow.row,"L").value = "Unified Computing Database Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "RISC to UCS Migration Acceleration Service " Then
.cells(checkrow.row,"L").value = "Unified Computing Database Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "SAN" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "SAN Health Check" Then
.cells(checkrow.row,"L").value = "SAN Health Check Service"
End IF
If .Cells(checkrow.Row, "L") = "SAN PD" Then
.cells(checkrow.row,"L").value = "SAN Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "SAN PD" Then
.cells(checkrow.row,"L").value = "SAN Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "SAN PDI" Then
.cells(checkrow.row,"L").value = "SAN Planning, Design and Implementation Service"
End IF
If .Cells(checkrow.Row, "L") = "SAP HANA" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "SAP HANA on UCS" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Security" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "SME for RFP" Then
.cells(checkrow.row,"L").value = "Presales/Scoping"
End IF
If .Cells(checkrow.Row, "L") = "TES / SAP Deals" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Tidal" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Tidal / NewScale" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Tidal PDI" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Tidal Phase 2" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "UC on UCS" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "UCS" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "UCS & DCN SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "UCS / Oracle POC" Then
.cells(checkrow.row,"L").value = "UCS POC"
End IF
If .Cells(checkrow.Row, "L") = "UCS Accelerated Deployment" Then
.cells(checkrow.row,"L").value = "Fixed-price Cisco Unified Computing Accelerated Deployment Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Accelerated Deployment" Then
.cells(checkrow.row,"L").value = "Fixed-price Cisco Unified Computing Accelerated Deployment Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Accelerated Deployment" Then
.cells(checkrow.row,"L").value = "Fixed-price Cisco Unified Computing Accelerated Deployment Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Accelerated Deployment" Then
.cells(checkrow.row,"L").value = "Fixed-price Cisco Unified Computing Accelerated Deployment Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Assessment and Planning" Then
.cells(checkrow.row,"L").value = "Unified Computing Architecture Assessment Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS CAP" Then
.cells(checkrow.row,"L").value = "CAP"
End IF
If .Cells(checkrow.Row, "L") = "UCS Escalation" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "UCS Lab Support" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "UCS Optimization" Then
.cells(checkrow.row,"L").value = "Unified Computing Optimization Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS PD" Then
.cells(checkrow.row,"L").value = "Unified Computing Planning and Design Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS POC" Then
.cells(checkrow.row,"L").value = "UCS POC"
End IF
If .Cells(checkrow.Row, "L") = "UCS POC" Then
.cells(checkrow.row,"L").value = "UCS POC"
End IF
If .Cells(checkrow.Row, "L") = "UCS Pre-Production Pilot" Then
.cells(checkrow.row,"L").value = "Fixed-price Cisco Unified Computing Preproduction Pilot Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS SAP HANA SME" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "UCS SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "UCS SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "UCS SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "UCS Start Up Accelerator" Then
.cells(checkrow.row,"L").value = "Fixed-price Cisco Unified Computing Start-Up Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Startup Accelerator" Then
.cells(checkrow.row,"L").value = "Fixed-price Cisco Unified Computing Start-Up Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Start-Up Accelerator" Then
.cells(checkrow.row,"L").value = "Fixed-price Cisco Unified Computing Start-Up Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "UCS Workshop" Then
.cells(checkrow.row,"L").value = "UCS POC"
End IF
If .Cells(checkrow.Row, "L") = "UI Project" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "Unified Fabric Optimization Service" Then
.cells(checkrow.row,"L").value = "Unified Fabric Optimization"
End IF
If .Cells(checkrow.Row, "L") = "Unified Fabric Optimization Service " Then
.cells(checkrow.row,"L").value = "Unified Fabric Optimization"
End IF
If .Cells(checkrow.Row, "L") = "V Block" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "VDI - Custom SOW" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "VDI pilot testing" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "VDI POC" Then
.cells(checkrow.row,"L").value = "VDI POC"
End IF
If .Cells(checkrow.Row, "L") = "VDI Program Management" Then
.cells(checkrow.row,"L").value = "Other"
End IF
If .Cells(checkrow.Row, "L") = "VDI SME" Then
.cells(checkrow.row,"L").value = "SME"
End IF
If .Cells(checkrow.Row, "L") = "VDI Workshop" Then
.cells(checkrow.row,"L").value = "VDI POC"
End IF
If .Cells(checkrow.Row, "L") = "VDI Workshop" Then
.cells(checkrow.row,"L").value = "VDI POC"
End IF
If .Cells(checkrow.Row, "L") = "Virtualization Accelerator" Then
.cells(checkrow.row,"L").value = "Unified Computing Virtualization Accelerator Service"
End IF
If .Cells(checkrow.Row, "L") = "WAAS" Then
.cells(checkrow.row,"L").value = "Wide Area Application Services Planning and Design Service (WAAS)"
End IF
If .Cells(checkrow.Row, "L") = "WAAS Assessment" Then
.cells(checkrow.row,"L").value = "Wide Area Application Services Planning and Design Service (WAAS)"
End IF
If .Cells(checkrow.Row, "L") = "WAAS Assessment" Then
.cells(checkrow.row,"L").value = "Wide Area Application Services Planning and Design Service (WAAS)"
End IF
If .Cells(checkrow.Row, "L") = "WAAS LLD" Then
.cells(checkrow.row,"L").value = "Wide Area Application Services Planning and Design Service (WAAS)"
End IF
If .Cells(checkrow.Row, "L") = "WAAS Optimization" Then
.cells(checkrow.row,"L").value = "Wide Area Application Services Optimization"
End IF
If .Cells(checkrow.Row, "L") = "WAAS PDI" Then
.cells(checkrow.row,"L").value = "Wide Area Application Services Planning Design and Implementation Service (WAAS)"
End IF
If .Cells(checkrow.Row, "L") = "Wide Area Application Services Planning, Design And Implementation Service (WAAS)" Then
.cells(checkrow.row,"L").value = "Wide Area Application Services Planning Design and Implementation Service (WAAS)"
End IF
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Next
End With
' AutoFit the column width in the summary sheet.
'DestSh.Columns.AutoFit
'DestSh.Rows.Height = 35
With Application
.Calculation = CalcMode
.ScreenUpdating = True
.EnableEvents = True
.DisplayAlerts = True
End With
Unload DynamicForm
End Sub