gpt4 book ai didi

c# - EPPlus 自动过滤器仅适用于最后一个电池

转载 作者:可可西里 更新时间:2023-11-01 03:03:47 27 4
gpt4 key购买 nike

我希望标题中的每个单元格都包含一个自动过滤器。下面是我尝试使用的代码,但是 autofilter 仅在指定的最后一个单元格上设置。

例如,如果我注释掉 K1autofilter 命令,则创建电子表格时 C1 是唯一具有自动过滤器。

        //Headers
ws.Cells["A1"].Value = "ChannelCode";
ws.Cells["A1"].AutoFilter = true;
ws.Cells["B1"].Value = "DrmTerrDesc";
ws.Cells["B1"].AutoFilter = true;
ws.Cells["C1"].Value = "IndDistrnId";
ws.Cells["C1"].AutoFilter = true;
ws.Cells["D1"].Value = "StateCode";
ws.Cells["D1"].AutoFilter = true;
ws.Cells["E1"].Value = "ZipCode";
ws.Cells["E1"].AutoFilter = true;
ws.Cells["F1"].Value = "EndDate";
ws.Cells["F1"].AutoFilter = true;
ws.Cells["G1"].Value = "EffectiveDate";
ws.Cells["G1"].AutoFilter = true;
ws.Cells["H1"].Value = "LastUpdateId";
ws.Cells["H1"].AutoFilter = true;
ws.Cells["I1"].Value = "ErrorCodes";
ws.Cells["I1"].AutoFilter = true;
ws.Cells["J1"].Value = "Status";
ws.Cells["J1"].AutoFilter = true;
ws.Cells["K1"].Value = "Id";
ws.Cells["K1"].AutoFilter = true;

最佳答案

EPPlus .AutoFilter 有点问题……我建议使用这样的范围:

ws.Cells["A1:K1"].AutoFilter = true;

关于c# - EPPlus 自动过滤器仅适用于最后一个电池,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20848921/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com