-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathallCode.cls
More file actions
1177 lines (959 loc) · 37.8 KB
/
allCode.cls
File metadata and controls
1177 lines (959 loc) · 37.8 KB
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
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sub BuiltorUnbuilt_Click()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("Sheet1")
Set sh2 = ActiveWorkbook.Sheets("Sheet2")
Dim i As Integer, n As Integer, num As String, five As String, stat As String
i = 2
n = 2
For i = 1 To 2030
num = sh1.Cells(i, 2).Value
stat = sh1.Cells(i, 4).Value
If (stat <> "Built") Then
For n = 1 To 8187
five = sh1.Cells(n, 5).Value
If (InStr(five, num) <> 0) Then
sh1.Cells(i, 4).Value = "Built"
End If
Next n
End If
Next i
End Sub
Sub FixProjectNum()
Dim c As Integer, n As Integer, s As Integer, pnum As String, fmt As String, zero As String, diff As Integer
fmt = "00000"
For c = 2 To 2030
pnum = Cells(c, 2).Value
If (Len(pnum) <> 10) Then
If (Len(pnum) < 5) Then
diff = Len(fmt) - Len(pnum)
zero = Mid(fmt, 1, diff)
pnum = zero + pnum
End If
pnum = pnum + ".00.0"
Cells(c, 2).Value = pnum
End If
Next c
End Sub
'Works from Vision-downloaded project descriptions to add to the current list in
Sub ProjectDescriptionAdd()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("Vision")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 1
'List length
listRange = 2030
'Vision list length
visionRange = 1394
'Declares project page description column locations for sheets 1 and 2
Dim pdLoc1 As Integer, pdLoc2 As Integer
pdLoc1 = 7
pdLoc2 = 5
For i = 2 To visionRange
apn = sh2.Cells(i, pnumLoc2).Value
For n = 2 To listRange
pn = sh1.Cells(n, pnumLoc2).Value
If (InStr(pn, apn) <> 0) Then
sh1.Cells(n, pdLoc1).Value = sh2.Cells(i, pdLoc2).Value
End If
Next n
Next i
End Sub
'Adds the published names collected from the vision list in sheet 2
Sub ProjectPublishedNameAdd()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("Vision")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 1
'List length
listRange = 2030
'Vision list length
visionRange = 1394
'Declares published name column locations for sheets 1 and 2
Dim pubnameLoc1 As Integer, pubnameLoc2 As Integer, j As Integer
pubnameLoc1 = 3
pubnameLoc2 = 2
For i = 2 To visionRange
apn = sh2.Cells(i, pnumLoc2).Value
For n = 2 To listRange
pn = sh1.Cells(n, pnumLoc1).Value
If (InStr(pn, apn) <> 0) Then
sh1.Cells(n, pubnameLoc1).Value = sh2.Cells(i, pubnameLoc2).Value
End If
Next n
Next i
End Sub
'Adds the practice area to the List from the vision sheet
Sub PracticeAreaAdd()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("Vision")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 1
'List length
listRange = 2030
'Vision list length
visionRange = 1394
'Declares practice area column locations for sheets 1 and 2
Dim pAreaLoc1 As Integer, pAreaLoc2 As Integer
pAreaLoc1 = 4
pAreaLoc2 = 3
For i = 2 To visionRange
apn = sh2.Cells(i, pnumLoc2).Value
For n = 2 To listRange
pn = sh1.Cells(n, pnumLoc1).Value
If (InStr(pn, apn) <> 0) Then
sh1.Cells(n, pAreaLoc1).Value = sh2.Cells(i, pAreaLoc2).Value
End If
Next n
Next i
End Sub
'Adds the office code to the list from the project sheet
Sub OfficeCodeAdd()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("Vision")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 1
'List length
listRange = 2030
'Vision list length
visionRange = 1394
'Declares practice area column locations for sheets 1 and 2
Dim codeLoc1 As Integer, codeLoc2 As Integer
codeLoc1 = 5
codeLoc2 = 4
For i = 2 To visionRange
apn = sh2.Cells(i, pnumLoc2).Value
For n = 2 To listRange
pn = sh1.Cells(n, pnumLoc1).Value
If (InStr(pn, apn) <> 0) Then
sh1.Cells(n, codeLoc1).Value = sh2.Cells(i, codeLoc2).Value
End If
Next n
Next i
End Sub
'Adds the office code to the list from the project sheet
Sub NoCheck()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("NoList")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnameLoc1 As Integer, pnameLoc2 As Integer
'Declares project name column locations for sheets 1 and 3
pnameLoc1 = 2
pnameLoc2 = 1
'List length
listRange = 2030
'Vision list length
visionRange = 809
'Declares in app vs not in app
Dim codeLoc1 As Integer, codeLoc2 As Integer
codeLoc1 = 10
For i = 2 To listRange
apn = sh1.Cells(i, pnameLoc1).Value
For n = 1 To visionRange
pn = sh2.Cells(n, pnameLoc2).Value
If (InStr(pn, apn) <> 0) Then
sh1.Cells(i, codeLoc1).Value = "No"
sh2.Cells(n, pnameLoc2).Value = ""
End If
Next n
Next i
End Sub
'Checks for legacy projects - pin or pin + description
Sub PinCheck()
Dim sh1 As Worksheet
'Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
'Set sh2 = ActiveWorkbook.Sheets("Justpin")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnameLoc1 As Integer, pnameLoc2 As Integer
'Declares project name column locations for sheets 1 and 3
pnameLoc1 = 2
pnameLoc2 = 1
'List length
listRange = 2030
'Vision list length
visionRange = 2080
'Declares in app vs not in app
Dim codeLoc1 As Integer, codeLoc2 As Integer
codeLoc1 = 11
For i = 2 To listRange
apn = sh1.Cells(i, pnameLoc1).Value
'For n = 1 To visionRange
'pn = sh2.Cells(n, pnameLoc2).Value
'If (InStr(pn, apn) <> 0) Then
'sh1.Cells(i, codeLoc1).Value = "Yes"
'End If
If (sh1.Cells(i, codeLoc1).Value = "") Then
sh1.Cells(i, codeLoc1).Value = "No"
End If
'Next n
Next i
End Sub
'Adds Service Types for Each Project based on an image list
Sub ServiceTypeAdd()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("ServiceType")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 1
'List length
listRange = 2030
'Vision list length
visionRange = 10354
'Declares service type column locations for sheets 1 and 2
Dim serviceLoc1 As Integer, serviceLoc2 As Integer
serviceLoc1 = 12
serviceLoc2 = 7
For i = 2 To listRange
For n = 2 To visionRange
pn = sh1.Cells(i, pnumLoc1).Value
apn = sh2.Cells(n, pnumLoc2).Value
If (InStr(pn, apn) <> 0) Then
'sh1.Cells(i, serviceLoc1).Value = ""
If (sh1.Cells(i, serviceLoc1).Value = "") Then
sh1.Cells(i, serviceLoc1).Value = sh2.Cells(n, serviceLoc2).Value
Else
sh1.Cells(i, serviceLoc1).Value = sh1.Cells(i, serviceLoc1).Value & ", " & sh2.Cells(n, serviceLoc2).Value
End If
End If
Next n
Next i
End Sub
Sub PublishedNameNew()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("UpdateSheet")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 1
'List length
listRange = 2030
'Vision list length
visionRange = 855
'Declares published name column locations for sheets 1 and 2
Dim pubnameLoc1 As Integer, pubnameLoc2 As Integer, j As Integer
pubnameLoc1 = 3
pubnameLoc2 = 2
For i = 2 To listRange
For n = 2 To visionRange
pn = sh1.Cells(i, pnumLoc1).Value
apn = sh2.Cells(n, pnumLoc2).Value
If (InStr(pn, apn) <> 0) Then
sh1.Cells(i, pubnameLoc1).Value = sh2.Cells(n, pubnameLoc2).Value
End If
Next n
Next i
End Sub
Sub PracticeAreaUpdate()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("UpdateSheet")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 1
'List length
listRange = 2030
'Vision list length
visionRange = 855
'Declares published name column locations for sheets 1 and 2
Dim pAreaLoc1 As Integer, pAreaLoc2 As Integer, j As Integer
pAreaLoc1 = 4
pAreaLoc2 = 5
For i = 2 To listRange
For n = 2 To visionRange
pn = sh1.Cells(i, pnumLoc1).Value
apn = sh2.Cells(n, pnumLoc2).Value
If (InStr(pn, apn) <> 0) Then
sh1.Cells(i, pAreaLoc1).Value = sh2.Cells(n, pAreaLoc2).Value
End If
Next n
Next i
End Sub
Sub ImagePaths()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("NewProjects")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 2
'List length
listRange = 2030
'Vision list length
visionRange = 281
'Declares published name column locations for sheets 1 and 2
Dim ImageLoc1 As Integer, ImageLoc2 As Integer, j As Integer
ImageLoc1 = 13
ImageLoc2 = 3
For i = 2 To listRange
ImageLoc1 = 13
For n = 2 To visionRange
pn = sh1.Cells(i, pnumLoc1).Value
apn = sh2.Cells(n, pnumLoc2).Value
If (sh2.Cells(n, 1) = "") Then
sh2.Cells(n, pnumLoc2).Value = sh2.Cells(n - 1, pnumLoc2).Value
End If
If (InStr(pn, apn) <> 0) Then
If (sh2.Cells(n, pnumLoc2).Value = sh2.Cells(n - 1, pnumLoc2).Value) Then
ImageLoc1 = ImageLoc1 + 1
End If
If sh2.Cells(n, ImageLoc2).Value <> "" Then
sh1.Cells(i, ImageLoc1).Value = sh2.Cells(n, ImageLoc2).Value
sh2.Cells(n, ImageLoc2).Value = ""
End If
End If
Next n
Next i
End Sub
Sub CompleteAddressPull()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("UpdateSheet")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 1
'List length
listRange = 2032
'Vision list length
visionRange = 811
'Declares published name column locations for sheets 1 and 2
Dim AddressNameLoc1 As Integer, Add1Loc2 As Integer, Add2Loc2 As Integer, CityLoc2 As Integer, StateLoc2 As Integer, ZipLoc2 As Integer, CountryLoc2 As Integer
AddressNameLoc1 = 8
Add1Loc2 = 6
Add2Loc2 = 7
CityLoc2 = 8
StateLoc2 = 9
ZipLoc2 = 10
CountryLoc2 = 11
For i = 2 To listRange
For n = 2 To visionRange
pn = sh1.Cells(i, pnumLoc1).Value
apn = sh2.Cells(n, pnumLoc2).Value
If (InStr(pn, apn) <> 0) Then
sh1.Cells(i, AddressNameLoc1).Value = sh2.Cells(n, Add1Loc2).Value
If (sh2.Cells(n, Add2Loc2).Value <> "") Then
sh1.Cells(i, AddressNameLoc1).Value = sh1.Cells(i, AddressNameLoc1).Value & ", " & sh2.Cells(n, Add2Loc2).Value
End If
sh1.Cells(i, AddressNameLoc1).Value = sh1.Cells(i, AddressNameLoc1).Value & vbCrLf & sh2.Cells(n, CityLoc2).Value & ", " & sh2.Cells(n, StateLoc2).Value & " " & sh2.Cells(n, ZipLoc2).Value & vbCrLf & sh2.Cells(n, CountryLoc2).Value
End If
Next n
Next i
End Sub
Sub GeoCode()
Dim GeoCode As Worksheet
Set GeoCode = ActiveWorkbook.Sheets("List")
Dim i As Integer
For i = 2 To 2032
'GeoCode.Range(Cells(i, 9), Cells(i, 9)).Formula = Ò=MyGeoCode(HÓ & i & Ò)Ó
If GeoCode.Cells(i, 8).Value <> "" Then
GeoCode.Cells(i, 9).Formula = "=MyGeoCode(H" & i & ")"
'Application.Wait (Now + TimeValue(Ò0:00:02Ó))
Application.Wait (Now + TimeValue("0:00:02"))
GeoCode.Cells(i, 9) = GeoCode.Cells(i, 9).Value
End If
Next
End Sub
Sub GeoCode1()
Dim GeoCode1 As Worksheet
Set GeoCode1 = ActiveWorkbook.Sheets("List")
Dim i As Integer
For i = 2 To 2032
'GeoCode.Range(Cells(i, 9), Cells(i, 9)).Formula = Ò=MyGeoCode(HÓ & i & Ò)Ó
If GeoCode1.Cells(i, 9).Value = "Not Found (try again, you may have done too many too fast)" Then
GeoCode1.Cells(i, 9).Formula = "=MyGeoCode(H" & i & ")"
'If GeoCode1.Cells(i, 8).Value <> "" Then
'GeoCode1.Cells(i, 9).Formula = "=MyGeoCode(H" & i & ")"
Application.Wait (Now + TimeValue("0:00:03"))
GeoCode1.Cells(i, 9) = GeoCode1.Cells(i, 9).Value
End If
Next
End Sub
Sub WriteGlobeFileOld()
Dim FilePath As String
Dim CellData As String
Dim LastCol As Integer
Dim LastRow As Integer
Dim i As Integer, j As Integer, c As Integer
Dim myarray As Variant
Dim q As String
Dim sh1 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
myarray = Array("ProjectNumber", "Reference", "jobName", "PracticeArea", "OfficeCode", "BuiltorUnbuilt", "projectInformation", "projectAddress", "projectCoordinates", "InApp", "Legacy", "Services", "ImagePath1", "ImagePath2", "ImagePath3", "ImagePath4", "ImagePath5", "projectAddress2")
LastCol = 18
'sh1.UsedRange.SpecialCells(x1CellTypeLastCell).Column
LastRow = 2032
'sh1.UsedRange.SpecialCells(x1CellTypeLastCell).Row
q = Chr(34)
CellData = ""
c = 1
'MsgBox (Application.DefaultFilePath)
FilePath = Application.DefaultFilePath & "\Globe1.txt"
Open FilePath For Output As #2
For i = 2 To LastRow
CellData = CellData & "Globe n" & c & " = new Globe();" & vbCrLf
For j = 1 To LastCol
If (Trim(sh1.Cells(i, j).Value) <> "") Then
If (j > 12) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & ("ProjectImages/") & (Trim(sh1.Cells(i, j).Value)) & "_ipad.jpg" & q & ";" & vbCrLf
ElseIf (j = 11) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & (Trim(sh1.Cells(i, j).Value)) & ";" & vbCrLf
ElseIf (j = 10) Then
CellData = CellData & ""
ElseIf (j = 9) Then
Dim CoordArray() As String
CoordArray = Split(Trim(sh1.Cells(i, j).Value), ",")
CellData = CellData & "n" & c & "." & "projectLatitude" & " = " & CoordArray(0) & ";" & vbCrLf & "n" & c & "." & "projectLongitude" & " = " & CoordArray(1) & ";" & vbCrLf
ElseIf (j = 7) Then
Dim DescArray() As String
Dim ConcDesc As String
Dim d As Integer
ConcDesc = ""
DescArray = Split(sh1.Cells(i, j).Value, vbLf)
For d = 0 To (UBound(DescArray))
If d = 0 Then
ConcDesc = ConcDesc & DescArray(0)
Else
ConcDesc = ConcDesc & "\n\n" & DescArray(d)
End If
Next d
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & ConcDesc & q & ";" & vbCrLf
ElseIf (j = 8) Then
Dim AddArray() As String
Dim AddStr As String
Dim a As Integer
AddStr = ""
AddArray = Split(sh1.Cells(i, j).Value, vbCrLf)
For a = 0 To (UBound(AddArray))
If a = 0 Then
AddStr = AddStr & AddArray(0)
Else
AddStr = AddStr & "\n\n & AddArray(a)"
End If
Next a
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & AddStr & q & ";" & vbCrLf
ElseIf (j = 3) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & "\n" & Trim(sh1.Cells(i, j).Value) & q & ";" & vbCrLf
ElseIf (j = 2) Then
CellData = CellData & ""
Else
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & Trim(sh1.Cells(i, j).Value) & q & ";" & vbCrLf
End If
End If
Next j
CellData = CellData & "pjData.Add (" & "n" & c & ");" & vbCrLf
If sh1.Cells(i, 11).Value = True Then
If sh1.Cells(i, 8).Value <> "" Then
Print #2, CellData
c = c + 1
CellData = ""
End If
Else
If sh1.Cells(i, 10).Value = "No" Then
CellData = ""
ElseIf sh1.Cells(i, 13).Value = "" Then
CellData = ""
Else
Print #2, CellData
c = c + 1
CellData = ""
End If
End If
Next i
Close #2
MsgBox ("Done. File is in: " & Application.DefaultFilePath)
End Sub
Sub WriteGlobeFileIpad()
Dim FilePath As String
Dim CellData As String
Dim LastCol As Integer
Dim LastRow As Long
Dim i As Integer, j As Integer, c As Integer
Dim myarray As Variant
Dim q As String
Dim sh1 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
myarray = Array("ProjectNumber", "Reference", "jobName", "PracticeArea", "OfficeCode", "BuiltorUnbuilt", "projectInformation", "projectAddress", "projectCoordinates", "InApp", "Legacy", "Services", "ImagePath1", "ImagePath2", "ImagePath3", "ImagePath4", "ImagePath5", "projectAddress2")
LastCol = 18
'sh1.UsedRange.SpecialCells(x1CellTypeLastCell).Column
With ActiveSheet
LastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
End With
'sh1.UsedRange.SpecialCells(x1CellTypeLastCell).Row
q = Chr(34)
CellData = ""
c = 1
'MsgBox (Application.DefaultFilePath)
FilePath = Application.DefaultFilePath & "\GlobeiPad.cs"
'Open FilePath For Output As #2
Dim fsT As Object
Set fsT = CreateObject("ADODB.Stream")
fsT.Type = 2 'Specify stream type - we want To save text/string data.
fsT.Charset = "utf-8" 'Specify charset For the source text data.
fsT.Open 'Open the stream And write binary data To the object
For i = 2 To LastRow
CellData = CellData & "Globe n" & c & " = new Globe();" & vbCrLf
For j = 1 To LastCol
If (Trim(sh1.Cells(i, j).Value) <> "") Then
If (j = 18) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & (Trim(sh1.Cells(i, j).Value)) & q & ";" & vbCrLf
ElseIf (j > 12) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & ("ProjectImages/") & LCase(Trim(sh1.Cells(i, j).Value)) & "_ipad.jpg" & q & ";" & vbCrLf
ElseIf (j = 12) Then
CellData = CellData & ""
ElseIf (j = 11) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & (LCase(Trim(sh1.Cells(i, j).Value))) & ";" & vbCrLf
ElseIf (j = 10) Then
CellData = CellData & ""
ElseIf (j = 9) Then
Dim CoordArray() As String
CoordArray = Split(Trim(sh1.Cells(i, j).Value), ",")
CellData = CellData & "n" & c & "." & "projectLatitude" & " = " & CoordArray(0) & ";" & vbCrLf & "n" & c & "." & "projectLongitude" & " = " & CoordArray(1) & ";" & vbCrLf
ElseIf (j = 8) Then
Dim AddArray() As String
Dim AddStr As String
Dim a As Integer
AddStr = ""
AddArray = Split(sh1.Cells(i, j).Value, vbLf)
For a = 0 To (UBound(AddArray))
If a = 0 Then
AddStr = AddStr & AddArray(0)
Else
AddStr = AddStr & "\n" & AddArray(a)
End If
Next a
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & AddStr & q & ";" & vbCrLf
ElseIf (j = 7) Then
Dim DescArray() As String
Dim ConcDesc As String
Dim d As Integer
ConcDesc = ""
DescArray = Split(sh1.Cells(i, j).Value, vbLf)
For d = 0 To (UBound(DescArray))
If d = 0 Then
ConcDesc = ConcDesc & DescArray(0)
Else
ConcDesc = ConcDesc & "\n\n" & DescArray(d)
End If
Next d
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & ConcDesc & q & ";" & vbCrLf
ElseIf (j = 6) Then
CellData = CellData & ""
ElseIf (j = 5) Then
CellData = CellData & ""
ElseIf (j = 3) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & "\n" & Trim(sh1.Cells(i, j).Value) & q & ";" & vbCrLf
ElseIf (j = 2) Then
CellData = CellData & ""
ElseIf (j = 1) Then
CellData = CellData & ""
Else
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & Trim(sh1.Cells(i, j).Value) & q & ";" & vbCrLf
End If
End If
Next j
CellData = CellData & "pjData.Add (" & "n" & c & ");" & vbCrLf
If sh1.Cells(i, 10).Value = False Then
CellData = ""
ElseIf sh1.Cells(i, 8).Value = "" Then
CellData = ""
ElseIf sh1.Cells(i, 11).Value <> True Then
If sh1.Cells(i, 6).Value = "" Then
CellData = ""
ElseIf sh1.Cells(i, 13).Value = "" Then
CellData = ""
End If
End If
If CellData <> "" Then
fsT.WriteText CellData
'Print #2, CellData
c = c + 1
CellData = ""
End If
Next i
fsT.SaveToFile FilePath, 2 'Save binary data To disk
'Close #2
MsgBox ("Done. File is in: " & Application.DefaultFilePath)
End Sub
Sub WriteGlobeiPhone()
Dim FilePathiPhone As String
Dim FilePath
Dim CellData As String
Dim LastCol As Integer
Dim LastRow As Long
Dim i As Integer, j As Integer, c As Integer
Dim myarray As Variant
Dim q As String
Dim sh1 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
myarray = Array("ProjectNumber", "Reference", "jobName", "PracticeArea", "OfficeCode", "BuiltorUnbuilt", "projectInformation", "projectAddress", "projectCoordinates", "InApp", "Legacy", "Services", "ImagePath1", "ImagePath2", "ImagePath3", "ImagePath4", "ImagePath5", "projectAddress2")
LastCol = 18
With ActiveSheet
LastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
End With
q = Chr(34)
CellData = ""
c = 1
'MsgBox (Application.DefaultFilePath)
FilePath = Application.DefaultFilePath & "\GlobeiPhone.cs"
'Open FilePath For Output As #2
Dim fsT As Object
Set fsT = CreateObject("ADODB.Stream")
fsT.Type = 2 'Specify stream type - we want To save text/string data.
fsT.Charset = "utf-8" 'Specify charset For the source text data.
fsT.Open 'Open the stream And write binary data To the object
For i = 2 To LastRow
CellData = CellData & "Globe n" & c & " = new Globe();" & vbCrLf
For j = 1 To LastCol
If (Trim(sh1.Cells(i, j).Value) <> "") Then
If (j = 18) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & (Trim(sh1.Cells(i, j).Value)) & q & ";" & vbCrLf
ElseIf (j > 13) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & ("https://pedatabase.blob.core.windows.net/peappv2pimages/") & LCase(Trim(sh1.Cells(i, j).Value)) & "_iphone.jpg" & q & ";" & vbCrLf
ElseIf (j = 13) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & ("ProjectImages/") & LCase(Trim(sh1.Cells(i, j).Value)) & "_iphone.jpg" & q & ";" & vbCrLf
ElseIf (j = 12) Then
CellData = CellData & ""
ElseIf (j = 11) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & (LCase(Trim(sh1.Cells(i, j).Value))) & ";" & vbCrLf
ElseIf (j = 10) Then
CellData = CellData & ""
ElseIf (j = 9) Then
Dim CoordArray() As String
CoordArray = Split(Trim(sh1.Cells(i, j).Value), ",")
CellData = CellData & "n" & c & "." & "projectLatitude" & " = " & CoordArray(0) & ";" & vbCrLf & "n" & c & "." & "projectLongitude" & " = " & CoordArray(1) & ";" & vbCrLf
ElseIf (j = 8) Then
Dim AddArray() As String
Dim AddStr As String
Dim a As Integer
AddStr = ""
AddArray = Split(sh1.Cells(i, j).Value, vbLf)
For a = 0 To (UBound(AddArray))
If a = 0 Then
AddStr = AddStr & AddArray(0)
Else
AddStr = AddStr & "\n" & AddArray(a)
End If
Next a
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & AddStr & q & ";" & vbCrLf
ElseIf (j = 7) Then
Dim DescArray() As String
Dim ConcDesc As String
Dim d As Integer
ConcDesc = ""
DescArray = Split(sh1.Cells(i, j).Value, vbLf)
For d = 0 To (UBound(DescArray))
If d = 0 Then
ConcDesc = ConcDesc & DescArray(0)
Else
ConcDesc = ConcDesc & "\n\n" & DescArray(d)
End If
Next d
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & ConcDesc & q & ";" & vbCrLf
ElseIf (j = 6) Then
CellData = CellData & ""
ElseIf (j = 5) Then
CellData = CellData & ""
ElseIf (j = 3) Then
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & "\n" & Trim(sh1.Cells(i, j).Value) & q & ";" & vbCrLf
ElseIf (j = 2) Then
CellData = CellData & ""
ElseIf (j = 1) Then
CellData = CellData & ""
Else
CellData = CellData & "n" & c & "." & myarray(j - 1) & " = " & q & Trim(sh1.Cells(i, j).Value) & q & ";" & vbCrLf
End If
End If
Next j
CellData = CellData & "pjData.Add (" & "n" & c & ");" & vbCrLf
If sh1.Cells(i, 10).Value = False Then
CellData = ""
ElseIf sh1.Cells(i, 8).Value = "" Then
CellData = ""
ElseIf sh1.Cells(i, 11).Value <> True Then
If sh1.Cells(i, 6).Value = "" Then
CellData = ""
ElseIf sh1.Cells(i, 13).Value = "" Then
CellData = ""
End If
End If
If CellData <> "" Then
fsT.WriteText CellData
'Print #2, CellData
c = c + 1
CellData = ""
End If
Next i
'Close #2
fsT.SaveToFile FilePath, 2 'Save binary data To disk
MsgBox ("Done. File is in: " & Application.DefaultFilePath)
End Sub
Sub ProjectDescriptionCheck()
Dim sh1 As Worksheet
Dim sh2 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
Set sh2 = ActiveWorkbook.Sheets("Vision")
Dim i As Integer, n As Integer, pn As String, apn As String, add As String, listRange As Integer, visionRange As Integer, pnumLoc1 As Integer, pnumLoc2 As Integer
'Declares project number column locations for sheets 1 and 2
pnumLoc1 = 1
pnumLoc2 = 1
'List length
listRange = 2044
'Vision list length
visionRange = 880
'Declares published name column locations for sheets 1 and 2
Dim descLoc1 As Integer, descLoc2 As Integer, desc1 As String, desc2 As String
descLoc1 = 7
descLoc2 = 6
For i = 2 To listRange
For n = 2 To visionRange
pn = sh1.Cells(i, pnumLoc1).Value
apn = sh2.Cells(n, pnumLoc2).Value
If (InStr(pn, apn) <> 0) Then
desc1 = sh1.Cells(i, descLoc1).Value
desc2 = sh2.Cells(n, descLoc2).Value
If (InStr(desc1, desc2) <> 0) Then
sh2.Cells(n, descLoc2 + 1).Value = "True"
Else
sh2.Cells(n, descLoc2 + 1).Value = "False"
sh2.Cells(n, descLoc2 + 2).Value = desc1
End If
End If
Next n
Next i
End Sub
Sub WriteGlobes()
Dim FilePathiPhone As String, FilePathiPad As String
Dim CellData As String
Dim CellDataiPad As String, CellDataiPhone As String
Dim LastCol As Integer, LastRow As Long
Dim i As Integer, j As Integer, c As Integer
Dim q As String
Dim myarray As Variant
Dim sh1 As Worksheet
Set sh1 = ActiveWorkbook.Sheets("List")
myarray = Array("ProjectNumber", "Reference", "jobName", "PracticeArea", "OfficeCode", "BuiltorUnbuilt", "projectInformation", "projectAddress", "projectCoordinates", "InApp", "Legacy", "Services", "ImagePath1", "ImagePath2", "ImagePath3", "ImagePath4", "ImagePath5", "projectAddress2")
LastCol = 17
With ActiveSheet
LastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
End With
q = Chr(34)
CellData = ""
c = 1
FilePathiPhone = Application.DefaultFilePath & "\GlobeiPhone.cs"
FilePathiPad = Application.DefaultFilePath & "\GlobeiPad.cs"
Open FilePathiPhone For Output As #2
Open FilePathiPad For Output As #3
For i = 2 To LastRow
CellDataiPhone = ""
CellDataiPad = ""
CellData = CellData & "Globe n" & c & " = new Globe();" & vbCrLf
For j = 2 To LastCol
If (Trim(sh1.Cells(i, j).Value) <> "") Then
If (j = 2) Then
CellData = CellData & "n" & c & "." & myarray(j) & " = " & q & "\n" & Trim(sh1.Cells(i, j).Value) & q & ";" & vbCrLf
ElseIf (j = 3) Then
If (Trim(sh1.Cells(i, j).Value) = "Y") Then
CellData = CellData & "n" & c & "." & myarray(j) & " = " & "true" & ";" & vbCrLf
Else
CellData = CellData & "n" & c & "." & myarray(j) & " = " & "true" & ";" & vbCrLf
End If
ElseIf (j = 4) Then
CellData = CellData & ""
ElseIf (j = 5) Then
If (Trim(sh1.Cells(i, j - 1).Value) = "Project Page*") Then
Dim DescArray() As String
Dim ConcDesc As String
Dim d As Integer
ConcDesc = ""
DescArray = Split(sh1.Cells(i, j).Value, vbLf)
For d = 0 To (UBound(DescArray))
If d = 0 Then
ConcDesc = ConcDesc & DescArray(0)
Else
ConcDesc = ConcDesc & "\n\n" & DescArray(d)
End If
Next d