我在Excel中有以下公式:
=COUNTIFS(A:A,A3,B:B,B3)-COUNTIFS(A4:A$1992,A3,B4:B$1992,B3)
如何从Access中的COUNTIFS
功能创建相同的输出?我对Access功能和/或VBA的了解并不强烈,因为我刚刚开始使用Access。
非常感谢任何帮助!
答案 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,但它会有这样的论点。 。 。