Relatório excel

Galera estou fazendo um relatório excel mais dessa vez preciso ter o cabeçalho na vertical que já tenho feito e preciso fazer um novo com além desse vertical ele deve ter uma coluna horizontal no canto esquerdo do excel como faço para ter essa coluna no canto esquerdo ?

achei a solução galera segue para o conhecimento de todos

HSSFSheet hssSheetVendasSetor = arquivoXLS.createSheet("Vendas dados por setor");
			cabecalho = hssSheetVendasSetor.createRow(0);
                        HSSFRow cabecalho = planilhaQtdeVendida.createRow(0);
			cabecalho.createCell(0).setCellValue(new HSSFRichTextString("Dia da Semana"));				
			cabecalho.createCell(1).setCellValue(new HSSFRichTextString("Domingo"));
			cabecalho.createCell(2).setCellValue(new HSSFRichTextString("Segunda"));
			cabecalho.createCell(3).setCellValue(new HSSFRichTextString("Terça"));
			cabecalho.createCell(4).setCellValue(new HSSFRichTextString("Quarta"));
			cabecalho.createCell(5).setCellValue(new HSSFRichTextString("Quinta"));
			cabecalho.createCell(6).setCellValue(new HSSFRichTextString("Sexta"));
			cabecalho.createCell(7).setCellValue(new HSSFRichTextString("Sabado"));			
			cabecalho.createCell(8).setCellValue(new HSSFRichTextString(""));	
	
			
			HSSFRow linhaVendasSetor1 = hssSheetVendasSetor.createRow(1);
			linhaVendasSetor1.createCell(0).setCellValue(new HSSFRichTextString("Data"));
			
			HSSFRow linhaVendasSetor2 = hssSheetVendasSetor.createRow(2);
			linhaVendasSetor2.createCell(0).setCellValue(new HSSFRichTextString("Setor"));

			HSSFRow linhaVendasSetor3 = hssSheetVendasSetor.createRow(3);
			linhaVendasSetor3.createCell(0).setCellValue(new HSSFRichTextString("Nºde Operadores"));
			
			HSSFRow linhaVendasSetor4 = hssSheetVendasSetor.createRow(4);
			linhaVendasSetor4.createCell(0).setCellValue(new HSSFRichTextString("Nº Logradouro"));
			
			HSSFRow linhaVendasSetor5 = hssSheetVendasSetor.createRow(5);
			linhaVendasSetor5.createCell(0).setCellValue(new HSSFRichTextString("Venda"));
			
			HSSFRow linhaVendasSetor6 = hssSheetVendasSetor.createRow(6);
			linhaVendasSetor6.createCell(0).setCellValue(new HSSFRichTextString("Nº Operadores que Venderam"));
			
			HSSFRow linhaVendasSetor7 = hssSheetVendasSetor.createRow(7);
			linhaVendasSetor7.createCell(0).setCellValue(new HSSFRichTextString("Média total por operador"));
			
			HSSFRow linhaVendasSetor8 = hssSheetVendasSetor.createRow(8);
			linhaVendasSetor8.createCell(0).setCellValue(new HSSFRichTextString("Média de operadores que venderam"));