我正在尝试获取vba中列的具体计数,不确定是什么导致了Expected:list separator的错误或者)
Function Filtered(Criteria As String, TestVector As Range, Product As Range)
Dim Count As Integer
Count = Application.WorksheetFunction.CountA(INDIRECT(CONCATENATE(TestVector,1,""[[#all],[GeographicMandateName]]"")))
TestVector将是命名范围的第一部分,间接连接应该引用相应的表。我在普通的excel表中使用它就好了。
VBA新手