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)
|
||||
Dim r As Long
|
||||
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
|
||||
csvContent = csvContent & CleanCSVField(ws.Cells(r, 3).Value)
|
||||
' CSV col2-11 -> G-P column
|
||||
|
||||
Reference in New Issue
Block a user