I was pulling in CSV data using DBquery, but suddenly I started to get very strange outputs from my script. Assuming I'd accidental edited something I shouldn't I spent ages trawling through the code, only to find the DBquery wasn't working.
I've then made a new basic script using the example code and converted the csv to xls to see if that would help, but I still see the same issue.
The original data set is large but I've attached a cut down 35 odd line xls with just a car make and model fields.
As soon as the model field hits text it returns a blank value?
Like I said the original data was csv so no formatting or anything and I've tried setting the xls cell format to text and it makes no difference. I really can't work out why it's stopped working

I've attached the xls and here is the demo script:
Let>connStr=Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\test\test1.xls;Extended Properties="Excel 8.0;Hdr=Yes;"
DBConnect>connStr,dbH
Let>SQL=select * from [Sheet1$]
DBQuery>dbH,SQL,exceldata,num_recs,num_fields
DBClose>dbH
let>x=1
let>outputdata=Make ~ Model%CRLF%
repeat>x
Let>make=exceldata_%x%_1
Let>model=exceldata_%x%_2
let>outputdata=%outputdata% %make% ~ %model%%CRLF%
let>x=x+1
until>x>35
MessageModal>%outputdata%