Showing 1 changed files with 6 additions and 5 deletions
+6 -5
README.md
... ...
@@ -29,6 +29,9 @@ Please see below for a list of command line options.
29 29
   -?	display usage information
30 30
   -abortonerror
31 31
     	abort program on first invalid cell data type
32
+  -autoformula
33
+        use value starting with an "=" as formula (default False) and do not
34
+        use the column datatype specified
32 35
   -colsep string
33 36
     	column separator (default '|')  (default "|")
34 37
   -columns string
... ...
@@ -46,18 +49,16 @@ Please see below for a list of command line options.
46 49
     	full pathname of output file (.xlsx file)
47 50
   -rows string
48 51
     	list of line numbers to use (1,2,8 or 1,3-14,28)
49
-  -rowsep string
50
-    	row separator (default LF)  (default "\n")
51 52
   -sheet string
52 53
     	tab name of the Excel sheet (default "fromCSV")
53 54
   -silent
54 55
     	do not display progress messages
55
-  -usetitles
56
-    	use first row as titles (will force string type) (default true)
56
+  -noheader
57
+    	do not use the first line as header (default is Yes)
57 58
 
58 59
         Column ranges are a comma-separated list of numbers (e.g. 1,4,8,16), intervals (e.g. 0-4,18-32) or a combination.
59 60
         Each comma group can take a type specifiers for the column,
60
-        one of "text", "number", "integer", "currency", date" or "standard",
61
+        one of "text", "number", "integer", "currency", date", "standard", "formula"
61 62
         separated from numbers with a colon (e.g. 0:text,3-16:number,17:date)
62 63
 ```
63 64