Hi guys,
I found another error when I insert columns in my template. See the output file
See the error: http://screencast.com/t/V72YERo9yi1j

Regards, Nicholls
Comments: the solution that I propose is: (ExcelWorksheet.cs/ InsertColumn method) ``` //.... c._columnMin += columns; c._columnMax += columns; if (c._columnMin > ExcelPackage.MaxColumns) { c._columnMin = ExcelPackage.MaxColumns; } if (c._columnMax > ExcelPackage.MaxColumns) { c._columnMax = ExcelPackage.MaxColumns; } //.... ``` let me know please if it is the solution. Regards, Nicholls
I found another error when I insert columns in my template. See the output file
See the error: http://screencast.com/t/V72YERo9yi1j

Regards, Nicholls
Comments: the solution that I propose is: (ExcelWorksheet.cs/ InsertColumn method) ``` //.... c._columnMin += columns; c._columnMax += columns; if (c._columnMin > ExcelPackage.MaxColumns) { c._columnMin = ExcelPackage.MaxColumns; } if (c._columnMax > ExcelPackage.MaxColumns) { c._columnMax = ExcelPackage.MaxColumns; } //.... ``` let me know please if it is the solution. Regards, Nicholls