if workbook1 contains
pattern in some cell then in the copy workBook that pattern is getting copied
but pattern color is not getting copied.
Please see the code below.
File file = new File("C:\\New Microsoft Excel Worksheet.xls");
File file2 = new File("C:\\test1.xls");
Workbook workbook1 = Workbook.getWorkbook(file);
WritableWorkbook copy = Workbook.createWorkbook(file2, workbook1);
Please help me.