Fix NULL value filter in export
This commit is contained in:
@@ -393,7 +393,7 @@ Sub ExportMasterDetailData()
|
|||||||
' Data: C,G,H,I,J,K,L,M,N,O,P (skip D,E,F)
|
' Data: C,G,H,I,J,K,L,M,N,O,P (skip D,E,F)
|
||||||
Dim r As Long
|
Dim r As Long
|
||||||
For r = 7 To lastDataRow
|
For r = 7 To lastDataRow
|
||||||
If Trim(ws.Cells(r, 3).Value) <> "" Then
|
If Len(Trim(ws.Cells(r, 3).Value & "")) > 0 Then
|
||||||
' CSV col1 -> C column
|
' CSV col1 -> C column
|
||||||
csvContent = csvContent & CleanCSVField(ws.Cells(r, 3).Value)
|
csvContent = csvContent & CleanCSVField(ws.Cells(r, 3).Value)
|
||||||
' CSV col2-11 -> G-P column
|
' CSV col2-11 -> G-P column
|
||||||
|
|||||||
Reference in New Issue
Block a user