Remove debug code
This commit is contained in:
@@ -399,13 +399,6 @@ Sub ExportMasterDetailData()
|
||||
For r = 7 To lastDataRow
|
||||
If Len(Trim(ws.Cells(r, 3).Value & "")) > 0 Then
|
||||
rowCount = rowCount + 1
|
||||
' Debug: show row content
|
||||
Dim rowData As String
|
||||
rowData = "Row " & r & ": " & CleanCSVField(ws.Cells(r, 3).Value)
|
||||
For j = 7 To 16
|
||||
rowData = rowData & ", " & CleanCSVField(ws.Cells(r, j).Value)
|
||||
Next j
|
||||
Debug.Print rowData
|
||||
' CSV col1 -> C column
|
||||
csvContent = csvContent & CleanCSVField(ws.Cells(r, 3).Value)
|
||||
' CSV col2-11 -> G-P column
|
||||
|
||||
Reference in New Issue
Block a user