excel range vba
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了excel range vba相关的知识,希望对你有一定的参考价值。
如何使以下公式在VBA中起作用
lastrowA和lastrowCheck是我要使用的范围
Worksheets("Investigate").Range("F & lastrowA,F" & lastrowCheck).Formula = "=SUMIFS(L$1:L$12,F$1:F$12,A&lastrowA,G$1:G$12,B&lastrowA,E$1:E$12,C&lastrowA,K$1:K$12,D&lastrowA)"
答案
尝试:
Worksheets("Investigate").Range("F" & lastrowA & ":F" & lastrowCheck).Formula'
以上是关于excel range vba的主要内容,如果未能解决你的问题,请参考以下文章