Creates a table from a CSV string.
TableFromCsv( [Csv String])
Where:
Csv String is a string separated by commas that represents a table.
Rule | Meaning |
---|---|
TableFromCsv(EnterCSVReturn) | Takes the text entered into the form control EnterCSV and creates a table array. |
TableFromCsv(EnterCSVReturn)
Where EnterCSV is the name of the Text Box control added in step 1 above.
{"Name","Thread Pitch","Nominal Diameter","Head Shape","Available";"M4","0.7","4","Pan","Yes";"M5","0.8","5","Round","";"M6","1","6","Button","Yes";"M10","1.5","10","","Yes";"M24","","24","Round","No";"M50","4.5","50","Pan","No"}
And if this variable is applied to the Items property of a Data Table control, on a user form, it will look like:
Subsequent new lines are treated as rows in the array.
Each column is separated with a comma.
See also