S.G.
S.G.

Reputation: 71

Filtering in Apache POI

I just started using the Apache POI to work on data from and Excel spreadsheet in Java. Right now I'm just tinking around. However, I can't seem to understand how the setAutoFilter function works. Could someone please explain it or give a link to some piece of code that shows Excel data being filtered.

Thank you.

Upvotes: 1

Views: 1152

Answers (1)

swamy
swamy

Reputation: 1210

sheet.setAutoFilter(CellRangeAddress.valueOf("A1:N1")); 

Upvotes: 4

Related Questions