I am using POI XSSF API and I would like to transpose a sheet.

how can I do that?

Thanks.

link|improve this question

40% accept rate
feedback

1 Answer

Transpose, as in swap A2 with B1 and A3 with C1 (so columns become rows)?

If so, there's nothing built in, so you'd need to do a little bit of coding yourself. You'd likely want to grab a pair of cells, save the contents of one (value and style), copy the second to the first, then overwrite the second.

See the quick guide if you're not sure on all the reading/writing parts.

link|improve this answer
thanks, but after saving the values and coming to paste them back I got an exception of : Exception in thread "main" java.lang.IllegalArgumentException: Sheet index (1) is out of range (0..0).....what can I do to solve that? – Yoni May 5 '11 at 19:34
My guess is either you're not using the same workbook, or you're using a new workbook which you haven't created a sheet in. You need to create a sheet in the new Workbook before you can populate it! – Gagravarr May 5 '11 at 23:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.