当储存的距离值一栏与储存日期的月份和年份相匹配时,我试图做一些过滤的计算。
下面我知道,我无法将每月职能适用于第(1)栏,因为它要求有一系列内容。 I've尝试了将第(1)栏和第(3)栏与月份和年份相匹配的不同之处,但没有发现任何效果。
Public function(numcount(ByRef RDate As Date, Tal As range)
Counter =0
For i = 1 To tbl.rows.count
If Month(tbl.cells(I,1).value) = month(RDate) and year(tbl.cells(I,1).value) = year(RDate) and tbl.cells(I,3) =“New” then
If worksheetfunction.countifts(tbl.columns(1) = month(Rdate), tbl.columns(1) = year(Rdate), tbl.columns(3), “New”, tbl.columns(11) tbl,cells(I,11) > 0 Then counter = counter + 1
End if
Next
End if
Numcount = counter
End function