Skip to content

Commit e7df461

Browse files
authored
Create Excel - DataCleaning.vb
1 parent ba1fc72 commit e7df461

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Excel - DataCleaning.vb

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Sub Cleaning()
2+
Dim wk As Worksheet
3+
Set wk = Worksheets("Clean")
4+
Dim r As Range
5+
Set r = wk.Range("E2:" & wk.Range("E2").End(xlDown).Address)
6+
Dim companyAddress As String
7+
Dim b As Integer
8+
For i = 0 To r.Count
9+
' Debug.Print Application.WorksheetFunction("=LEFT(" & r(i, 1).Address & ";LEN(" & r(i, 1).Address & ") - 12)")
10+
Next i
11+
End Sub

0 commit comments

Comments
 (0)