运行从excel到访问的计数

时间:2017-08-08 13:49:01

标签: excel ms-access

我在Excel中有以下公式:

=COUNTIFS(A:A,A3,B:B,B3)-COUNTIFS(A4:A$1992,A3,B4:B$1992,B3)

Excel output

如何从Access中的COUNTIFS功能创建相同的输出?我对Access功能和/或VBA的了解并不强烈,因为我刚刚开始使用Access。

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

好吧,你可以试试DCOUNT。

https://www.techonthenet.com/access/functions/domain/dcount.php

或者,从Access调用Excel函数。

Dim xls As Excel.Application    
Set xls = New Excel.Application

' Begin loop.
    bt = xls.WorksheetFunction.COUNTIFS(your_logic_here)
' End loop.  

xls.Quit
Set xls = Nothing

我不太了解COUNTIFS,但它会有这样的论点。 。 。

enter image description here