EXCEL一对多关系将结果合并到一个单元格

EXCEL一对多关联结果,合并到1个单元格,变成一对一

需求说明

举例说明

假设给出国家省和国家市的对应表,因为每个省都有很多个城市(如图1,截取了部分),属于一对多的情况;
在这里插入图片描述
如何将同一个省的城市合并放到同一个单元格内;结果要求(图2)在这里插入图片描述

解决方法

  1. 按“国家省”字段进行排序;
  2. 在“C3”单元格输入公式,然后下拉;
    公式:=IF(COUNTIF(A4:A$180,A3),B3&" "&VLOOKUP(A3,A4:C$180,3,0),B3)
  3. 完成第②部后,得到的结果如下图;然后用vlookup进行匹配即可,因为vlookup匹配时,只会匹配到第一个;
  4. 在这里插入图片描述

注意事项

  1. 引号内可自行修改合并后的分隔符(此处为空格)
    在这里插入图片描述
  2. 在选择区域时,行参数要比实际行数多至少1行,否则最后一行数据匹配会出现错误。
    在这里插入图片描述

参考连接:https://zhuanlan.zhihu.com/p/369682251

在EasyExcel中,要实现一对多对象的导出并合并单元格,可以按照以下步骤进行操作: 1. 创建一个DTO类,用于存储需要合并单元格的信息。该类需要包含以下属性: - cellIndex:需要合并单元格列下标 - startRow:合并开始行 - endRow:合并结束行 2. 在导出时,根据一对多关系,将需要合并单元格信息存储到DTO对象中。 3. 使用EasyExcel提供的`CellRangeAddress`类来实现单元格合并。该类的构造方法需要传入合并的起始行、结束行、起始列和结束列。 4. 在导出时,根据DTO对象中的信息,创建`CellRangeAddress`对象,并将其添加到合适的地方,以实现单元格合并。 下面是一个示例代码,演示了如何在EasyExcel中导出一对多对象并合并单元格: ```java import com.alibaba.excel.EasyExcel; import com.alibaba.excel.write.builder.ExcelWriterBuilder; import com.alibaba.excel.write.builder.ExcelWriterSheetBuilder; import com.alibaba.excel.write.metadata.style.WriteCellStyle; import com.alibaba.excel.write.style.HorizontalCellStyleStrategy; import org.apache.poi.ss.usermodel.IndexedColors; import org.apache.poi.ss.util.CellRangeAddress; import java.util.ArrayList; import java.util.List; public class ExportDemo { public static void main(String[] args) { // 创建一对多对象列表 List<ParentObject> parentList = new ArrayList<>(); // 添加一对多对象数据 // 创建DTO列表,用于存储需要合并单元格的信息 List<MergeCellDTO> mergeCellList = new ArrayList<>(); // 添加需要合并单元格的信息到DTO列表 // 导出Excel String fileName = "output.xlsx"; EasyExcel.write(fileName) .registerWriteHandler(getCellStyleStrategy()) .sheet("Sheet1") .doWrite(parentList); // 合并单元格 ExcelWriterBuilder excelWriterBuilder = EasyExcel.write(fileName); ExcelWriterSheetBuilder sheetBuilder = excelWriterBuilder.sheet("Sheet1"); for (MergeCellDTO mergeCellDTO : mergeCellList) { CellRangeAddress cellRangeAddress = new CellRangeAddress( mergeCellDTO.getStartRow(), mergeCellDTO.getEndRow(), mergeCellDTO.getCellIndex(), mergeCellDTO.getCellIndex() ); sheetBuilder.merge(cellRangeAddress); } sheetBuilder.doWrite(parentList); } // 设置单元格样式 private static HorizontalCellStyleStrategy getCellStyleStrategy() { WriteCellStyle headWriteCellStyle = new WriteCellStyle(); headWriteCellStyle.setFillForegroundColor(IndexedColors.LIGHT_BLUE.getIndex()); WriteCellStyle contentWriteCellStyle = new WriteCellStyle(); contentWriteCellStyle.setFillForegroundColor(IndexedColors.WHITE.getIndex()); return new HorizontalCellStyleStrategy(headWriteCellStyle, contentWriteCellStyle); } } ``` 请注意,上述代码中的`ParentObject`是一对多对象的父对象,你需要根据实际情况进行替换。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值