You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added anyColumnCreatesCollection option to allow @AnyColum to switch between two behaviors (for BeanSheetReaders only) if an Excel sheet contains more than one column with the same column name:
false (default for versions <2.0): like in previous versions, only the last column value is returned, ie. if your sheet has three columns named "project name" that are part of an @AnyColum set, only the value of the last (right-most) column will be returned
true: (default for version 2.0 and up): all column values in @AnyColum sets are returned as Collections, so that no data is lost
Big refactoring of SheetReader and SheetWriter subclasses to use common code bases