VBA代码出现问题,该代码将带有单元格引用的公式添加到其他工作表

时间:2019-02-02 18:18:01

标签: excel vba

单击用户窗体按钮后,将运行以下代码,该代码的后三行出现错误,与Locations变量有关。

该代码必须使用用户输入的名称创建一个新的工作表,并且还必须向该“ Locations”工作表中添加一行数据,其中包含新位置的名称,新创建的工作表中的总支出以及每个支出的总和新创建的工作表中的人

Private Sub CommandButton1_Click()

Set Locations = ThisWorkbook.Sheets("Locations")

Dim LastRow As Long
Dim Location As String

Location = TextBox1().Value

If Len(Trim(Location)) = 0 Then
    MsgBox "Please enter a location"
Else
    Dim ws As Worksheet
    With ThisWorkbook
    Set ws = .Sheets.Add(After:=.Sheets(.Sheets.Count))
    ws.Name = Location
    Range("A1").Value = "Type"
    Range("B1").Value = "Paid By"
    Range("C1").Value = "Amount"
    End With

    LastRow = Worksheets("Locations").Range("A" & Rows.Count).End(xlUp).Row + 1

    Worksheets("Locations").Range("A" & LastRow).Value = Location
    Worksheets("Locations").Range("B" & LastRow).Formula = "=SUM(" & Location & "!C:C)"
    Worksheets("Locations").Range("C" & LastRow).Formula = "=SUMIF(" & Location & "!B:B;Locations!C2;" & Location & "!C:C)"
    Worksheets("Locations").Range("D" & LastRow).Formula = "=SUMIF(" & Location & "!$B:$B;Locations!D2;" & Location & "!$C:$C)"

End If

End Sub

1 个答案:

答案 0 :(得分:0)

  • 如果您的工作表名称可能有空格,那么您需要在公式中引用它们
  • 在VBA中创建公式时,列表分隔符始终是逗号(除非可以使用本地列表分隔符时使用FormulaLocal,但出于各种原因这不是一个好主意)

未经测试:

Private Sub CommandButton1_Click()

    Dim LastRow As Long
    Dim Location As String
    Dim ws As Worksheet, Locations As Worksheet

    Set Locations = ThisWorkbook.Sheets("Locations")
    Location = Trim(TextBox1.Value)

    If Len(Location) = 0 Then
        MsgBox "Please enter a location"
    Else

        With ThisWorkbook
            Set ws = .Sheets.Add(After:=.Sheets(.Sheets.Count))
        End With
        ws.Name = Location
        ws.Range("A1").Value = "Type"
        ws.Range("B1").Value = "Paid By"
        ws.Range("C1").Value = "Amount"


        With Locations.Range("A" & Rows.Count).End(xlUp).Offset(1, 0).EntireRow
            .Cells(1).Value = Location
            .Cells(2).Formula = "=SUM('" & Location & "'!C:C)"
            .Cells(3).Formula = "=SUMIF('" & Location & "'!B:B,Locations!C2,'" & Location & "'!C:C)"
            .Cells(4).Formula = "=SUMIF('" & Location & "'!$B:$B,Locations!D2,'" & Location & "'!$C:$C)"
        End With
    End If

End Sub