回复 1楼喀喀坤的帖子
感谢开新帖继续沟通。
在上个帖子: 公式写入 中,得到结论:
ActiveX (COM)下,只能一个单元格,一个单元格设置公式。
如每个单元格每个单元格设置,实际上上修改M#\N#的参数:需要通过循环代码实现, 这个函数供您参考:
- private static string GetNewFormu(string strOldFormu, int index)
- {
- string strNewForm = strOldFormu;
- string sCharacterRegx = @"\d+";
- Regex rgVal = new Regex(sCharacterRegx);
- strNewForm = rgVal.Replace(strOldFormu, index.ToString());
- return strNewForm;
- }
复制代码 |