简体   繁体   中英

cell value shift in row grouping excel Java

This picture show how I want to shift the cell value when the rows are grouping

在此处输入图片说明

I'm trying to shift the cell value of the rows that are grouped in excel, I'm using Java POI library**.

I couldn't find any method that can do the job. any help would be appreciated

This is called indention. You have to use CellStyle :

CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setAlignment(CellStyle.ALIGN_LEFT);
cellStyle.setIndention((short) 2);
cell.setCellStyle(cellStyle);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM