c# - multiple autofilters for the same EPPlus worksheet -


im creating xlsx-file using epplus , want have autofilters headers. set autofilters this:

worksheet.cells["a3:g" + (3 + data.count).tostring()].autofilter = true; 

this works smooth 1 table of content. however, have 2 separate tables in same worksheet, , when trying set autofilters second one, autofilters first 1 disappears.

any known workarounds this, or other suggestions?

this question!

a traditional limitation of autofilter can applied once on worksheet.

starting excel 2007 can create several tables on worksheet...........each filtering capabilities.

see pieterse's article


Comments

Popular posts from this blog

Why can rails not find a route created by a helper? -

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -