Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
誰かが次のコードの修正を手伝ってくれませんか:
Dim Medium As String Medium = "XYZ" ActiveCell.FormulaR1C1 = "=SUMIFS(List2!C[8],List2!C[2],""=XYZ"",List2!C[11],""=prime"")"
""=XYZ""コードの一部を変数に置き換える必要があります
""=XYZ""
このような?
Dim Medium As String Medium = "XYZ" ActiveCell.FormulaR1C1 = "=SUMIFS(List2!C[8],List2!C[2]," & _ Chr(34) & _ Medium & _ Chr(34) & _ ",List2!C[11],""=prime"")"