Page 1 of 1

count rowset error

Posted: Wed Apr 19, 2017 7:14 am
by ehersh
Any idea what could cause this error in a count rowset? :
8099 - Count RowSet] An unexpected error occurred. Your InputStream was neither an OLE2 stream, nor an OOXML stream
.

The column count works its just the row count that does not. the count rowset code is
Code: Select all
<countRowSet rowsetVariable="${newrow}" rowCountVariable="rows" columnCountVariable="columns" version="1.0" />

Re: count rowset error

Posted: Wed Apr 19, 2017 4:57 pm
by Support_Rick
Can you show me your full project XML so i can see fully what you're trying to do?

Re: count rowset error

Posted: Thu Apr 20, 2017 8:34 am
by ehersh
I figured it out thank you. I have a read excel that I had a file list on. The count rows was trying to count the rows in the file list instead of the row set. I removed the file list from the read excel and created a separate one then it worked, thank you.