Skip to content

Commit 8223397

Browse files
committed
Update exportation-examples.md
1 parent 4448e29 commit 8223397

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/examples/exportation-examples.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The [EXAMPLE1] shows how you can export all the data in VBA array to a CSV file
2929
```vb
3030
Sub ExportToCSV_RFC4180()
3131
Dim CSVix As CSVinterface
32-
Dim MyArray() As Variant
32+
Dim MyArray() As String
3333
Dim filePath As String, tmpCSV As String
3434
Dim outputFile As String
3535

@@ -64,7 +64,7 @@ See also
6464
```vb
6565
Sub ExportToCSV()
6666
Dim CSVix As CSVinterface
67-
Dim MyArray() As Variant
67+
Dim MyArray() As String
6868
Dim filePath As String, tmpCSV As String
6969
Dim outputFile As String
7070

@@ -98,7 +98,7 @@ See also
9898
```vb
9999
Sub ExportToCSV()
100100
Dim CSVix As CSVinterface
101-
Dim MyArray() As Variant
101+
Dim MyArray() As String
102102
Dim filePath As String, tmpCSV As String
103103
Dim outputFile As String
104104

0 commit comments

Comments
 (0)