2017-08-08 63 views
1

我已經在Excel公式如下:運行從Excel計數訪問

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

Excel output

如何創建從Access中的COUNTIFS功能此輸出一樣嗎?我對Access功能和/或VBA的瞭解並不是很強,因爲我剛剛開始使用Access。

任何幫助非常感謝!

回答

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