Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to write below formula in excel vba format.I tried so much options, but it gives compile error.
=COUNTFS(A2:A9,="2013",B2:B9,="Oranges")
Posted

Try
VB
=COUNTIFS(A2:A9,2013,B2:B9,"Oranges")
 
Share this answer
 
Comments
Maciej Los 10-Jul-14 8:02am    
+5
Richard MacCutchan 10-Jul-14 9:59am    
Thanks; but not exactly difficult to solve in Excel.
Test it:
VB
Sheet1.Range("A1").Formula = "=COUNTIFS(A2:A9,2013,B2:B9,""Oranges"")"
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900