代码之家  ›  专栏  ›  技术社区  ›  D T

如何为Excel Com设置公式?

  •  0
  • D T  · 技术社区  · 2 年前

    我用VB编写了Excel Com。网 我设定了一个 Formula Cell

    Dim  oSheet = oBook.Sheets(1)  
    Dim iLastRow = oSheet.UsedRange.Rows.Count
    For i = 7 To iLastRow            
        oSheet.Cells(i, 6).Formula = "=EXACT(JIS(E" & i & "),JIS(G" & i & "))"           
    Next
    

    但单元格输出错误“#名称?” enter image description here

    如果我双击单元格,公式将起作用:

    enter image description here

    为什么打开文件后公式不起作用?

    0 回复  |  直到 2 年前