Michael Thanks for your reply.
It turns out that a blank cell is of type CELL_TYPE_STRING. The reason that my code wasn't working was because I was using a for loop to traverse the rows, and a case statement inside the for loop to traverse the columns. In the case where a column wasn't blank, the case statement was executed. However, when the column was empty, the case statement wasn't executed. I had to add some logic outside of the case to check if the string had data to get my code to work. Joe --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta Poi Project: http://jakarta.apache.org/poi/
