Skip to content

Commit 670f4a9

Browse files
committed
Update exportation-examples.md
1 parent 4fcd166 commit 670f4a9

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
@@ -18,7 +18,7 @@ nav_order: 2
1818

1919
## Export data to a CSV file
2020

21-
The *example1* shows how you can export all the data in VBA array to a CSV file using the RFC-4180 standard as paramount.
21+
The [example1] shows how you can export all the data in VBA array to a CSV file using the RFC-4180 standard as paramount.
2222

2323
#### [example1]
2424
*Note: the example uses the option `QuotationMode.Critical`, [learn more here](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/quotationmode.html).*
@@ -47,7 +47,7 @@ End Sub
4747

4848
## Export to a CSV file without special syntax
4949

50-
The *example2* shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 standard’s rules. Be careful, use this only if the array doesn't hold especial chars (vbCrLf [vbCr, vbLf], comma [semicolon], double quotes[apostrophe]) in neither of its fields. The output CSV file has neither field needing to be escaped.
50+
The [example2] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 standard’s rules. Be careful, use this only if the array doesn't hold especial chars (vbCrLf [vbCr, vbLf], comma [semicolon], double quotes[apostrophe]) in neither of its fields. The output CSV file has neither field needing to be escaped.
5151

5252
See also
5353
:[QuotationMode](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/quotationmode.html), [EscapeType](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/escapetype.html).
@@ -78,7 +78,7 @@ Sub ExportToCSV()
7878
Set CSVix = Nothing 'Terminate the current instance
7979
End Sub
8080
```
81-
The *example3* shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 standard’s rules. Each field CSV of the output file need to be escaped by desired char. The procedure presented in the [example3] can be used in whatever circumstance.
81+
The [example3] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 standard’s rules. Each field CSV of the output file need to be escaped by desired char. The procedure presented in the [example3] can be used in whatever circumstance.
8282

8383
See also
8484
:[QuotationMode](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/quotationmode.html), [EscapeType](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/escapetype.html).

0 commit comments

Comments
 (0)