4

我有一个采购订单的 Excel '07 模板文件。在模板上,只有 3 行项目的空间,然后模板显示总计。

所以,基本上,在模板中它有:第 19 行 - 第 20 行项目 - 第 21 行项目 - 第 22 行项目 - 项目总数

显然,大多数购买都会有超过 3 件商品。那么,在打印出 3 个项目之后,我将如何在 21 和 22 之间插入一行?

编辑; 所以这就是我所拥有的:

            xlApp.Workbooks.Open(template, misValue, misValue, misValue, 
                misValue, misValue, misValue, misValue, misValue, misValue, 
                misValue, misValue, misValue, misValue, misValue); 

int row = 19;
if (poDetailBO1.MoveFirst())
            {
                do
                {
                    itemsBO3.FillByPK(poDetailBO1.Style);
                    if (row < 22)
                    {


                        xlApp.Cells[row, 1] = poDetailBO1.LineNo;
                        xlApp.Cells[row, 2] = itemsBO3.Factory;
                        xlApp.Cells[row, 3] = poDetailBO1.Style;
                        xlApp.Cells[row, 4] = itemsBO3.UPC_Code;
                        xlApp.Cells[row, 5] = itemsBO3.Item_Description;
                        xlApp.Cells[row, 6] = "TARRIFF"; //To be replaced later
                        xlApp.Cells[row, 7] = itemsBO3.Plate_Color;
                        xlApp.Cells[row, 8] = itemsBO3.Color;
                        xlApp.Cells[row, 9] = poDetailBO1.PrePack;
                        xlApp.Cells[row, 10] = itemsBO3.Cost;
                        xlApp.Cells[row, 11] = poDetailBO1.Qty;
                        xlApp.Cells[row, 12] = poDetailBO1.Qty * itemsBO3.Cost;

                        row++;
                    }
                    else if (row >= 22)
                    {
                        Excel.Range r = xlWorkSheet.Range[xlWorkSheet.Cells[row, misValue], xlWorkSheet.Cells[row, misValue]];
                        r.Insert(Excel.XlInsertShiftDirection.xlShiftDown, misValue);
                        r.Value2 = "GOBBLYDEEGOOK";

                        row++;
                    }
                } while (poDetailBO1.MoveNext());

但是,我的插入被插入到错误的工作表中,哈哈。而不是我什至想象它被插入的地方——第 2 行,第 19 列。

4

3 回答 3

9

首先,我看不到你在哪里设置你的xlWorksheet,但那将是我首先要检查的地方,看看为什么你的单元格被插入到错误的工作表上。

其次,我认为您的Excel.Range对象设置不正确。您可能会遇到麻烦,因为您只在属性中指定行号WorkSheet.Cells而不是列名。当我尝试在使用的单元格范围之后插入单元格时,而不是在我想要的位置。我倾向于使用对象的get_Range()方法,Worksheet因为它通常以更可预测的方式工作。

鉴于所有这些,根据您是希望特定单元格向下移动还是整个行,您可以使用以下之一:

// To shift down a set of cells from columns A to F

Excel.Range r = xlWorkSheet.get_Range("A" + row.ToString(), "F" + row.ToString());
r.Insert(Excel.XlInsertShiftDirection.xlShiftDown);

// To shift down all of a row

Excel.Range r = xlWorkSheet.get_Range("A" + row.ToString(), "A" + row.ToString()).EntireRow;
r.Insert(Excel.XlInsertShiftDirection.xlShiftDown);
于 2012-11-16T16:54:32.343 回答
0

直到午休后我才看到 Sid Holland 的帖子,一位同事发给我的代码与他的基本相同......

    private void CopyRowsDown(int startrow, int count, Excel.Range oRange, Excel.Worksheet oSheet)
    {
        oRange = oSheet.get_Range(String.Format("{0}:{0}", startrow), System.Type.Missing);
        oRange.Select();
        oRange.Copy();
        //oApp.Selection.Copy();

        oRange = oSheet.get_Range(String.Format("{0}:{1}", startrow + 1, startrow + count - 1), System.Type.Missing);
        oRange.Select();
        oRange.Insert(-4121);
        //oApp.Selection.Insert(-4121);

    }

即使计数为 1,也能完美运行。

于 2012-11-16T19:25:05.450 回答
0
public static void CopyRowsDown(_Worksheet worksheet, int startRowIndex, int countToCopy)
    {
        for (int i = 1; i < countToCopy; i++)
        {
            var range = worksheet.get_Range(string.Format("{0}:{0}", startRowIndex, Type.Missing));
            range.Select();
            range.Copy();

            range = worksheet.get_Range(string.Format("{0}:{1}", startRowIndex + i, startRowIndex + i, Type.Missing));
            range.Select();
            range.Insert(-4121);
        }
    }

适用于任何计数

于 2016-08-29T12:13:33.530 回答