テーブル ("Table1") の 4 つの特定の列に数式を追加するには、ネストされたループが必要です。これらの同じ 4 つの追加の列 ("colNames") の命名に関して、For ループが前の For ループを模倣することを望みます。
このコードの下部は問題なく動作しますが、ループに組み込む方法を知りたいです。
Sub attStatPivInsertTableColumns_2()
Dim lst As ListObject
Dim currentSht As Worksheet
Dim colNames As Variant, formNames As Variant '<~~ NOTE: As Varient, this is your go to when working with arrays
Dim oLC As ListColumn, oLData As Variant
Dim i As Integer, d As Integer
Set currentSht = ActiveWorkbook.Sheets("Sheet1")
Set lst = ActiveSheet.ListObjects("Table1")
colNames = Array("AHT", "Target AHT", "Transfers", "Target Transfers")
For i = 0 To UBound(colNames)
Set oLC = lst.ListColumns.Add
oLC.Name = colNames(i)
Next i
***Below is the code that needs to be looped***
'lst.ListColumns("Target AHT").DataBodyRange.FormulaR1C1 = "=350"
'lst.ListColumns("Target Transfers").DataBodyRange.FormulaR1C1 = "=0.15"
'lst.ListColumns("AHT").DataBodyRange.FormulaR1C1 = "=([@[Inbound Talk Time (Seconds)]]+[@[Inbound Hold Time (Seconds)]]+[@[Inbound Wrap Time (Seconds)]])/[@[Calls Handled]]"
'lst.ListColumns("Transfers").DataBodyRange.FormulaR1C1 = "=[@[Call Transfers and/or Conferences]]/[@[Calls Handled]]"
End Sub
これは私がこれまでのところ行っていることですが、おそらく明らかな理由でエラーが発生しています。
formNames = Array("=([@[Inbound Talk Time (Seconds)]]+[@[Inbound Hold Time (Seconds)]]+[@[Inbound Wrap Time (Seconds)]])/[@[Calls Handled]]", "=350", "=[@[Call Transfers and/or Conferences]]/[@[Calls Handled]]", "=0.15")
For d = 0 To UBound(formNames)
For i = 0 To UBound(colNames)
Set oLData = lst.ListColumns(i).DataBodyRange.FormulaR1C1 = "d"
Next i
Next d