What is the equivalent of this...
<cfspreadsheet action="read" src="#form.uploadedFile#" query="mycontent" >
in cfscript?
cfscript has spreadSheetRead(fileName) - but the result is an object with the file metadata, Even if I specify the sheet, it only returns metadata not row column data.
I need to loop over the rows... how do I do this?
I am trying to avoid exiting my script format, and interjecting 'cf' tag format...Any help is appreciated.