Return the value from each row for a particular column of the datalist, as a delimited list
The row index
Quote (with escaping) every element of the string with this char
The delimiter to use
1 2 3 4 5 | Debug.Print lst.RowValsAsDelimList 2 -> 2,Chang,1,19 Debug.Print lst.RowValsAsDelimList 2, True , ";" -> "2" ; "Chang" ; "1" ; "19" |