I can't figure out what the issue is with a "type mismatch" with the "Split" statement below.
Dim result as variant ' result will be assigned a cvs string from an API call
Dim ResultArr() as variant
ResultsArr = Split(result, ",")
In debug, result equals the string: "12/5/14","Alerian MLP ETF","AMLP",17.97,1.13,6.23,4514800
In the desired results of the split would be that some of the array elements would be quoted strings while others would be numbers.