COUNTIFS #Value! Error

arooney88

Board Regular
Joined
Feb 17, 2014
Messages
61
Hi everyone. New to the board and looking for a little help on a problem I'm having.
I'm trying to use COUNTIFS to pull data from a seperate workbook's worksheet onto my current workbook I'm using. I'm trying to look in my G column range for a string ("NO") and also my C column range for a string "WFF".

My formula reads
=COUNTIFS('C:\Users\u202786\Desktop\Reporting Information\2013 Testing Results\Testing Results\Aug\[180 Results.xlsm]Traynor'!G4:G683, "NO", 'C:\Users\u202786\Desktop\Reporting Information\2013 Testing Results\Testing Results\Aug\[180 Results.xlsm]Traynor'!C4:C683, "WFF")

It's returning the #Value! error instead of the correct number. Any ideas on why it's not working??
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Welcome to MrExcel arooney88,

COUNTIFS doesn't work with closed workbooks - if you need your formula to work on a closed source workbook change to SUMPRODUCT, i.e.

=SUMPRODUCT(('C:\Users\u202786\Desktop\Reporting Information\2013 Testing Results\Testing Results\Aug\[180 Results.xlsm]Traynor'!G4:G683="NO")*('C:\Users\u202786\Desktop\Reporting Information\2013 Testing Results\Testing Results\Aug\[180 Results.xlsm]Traynor'!C4:C683="WFF"))
 
Upvote 0

Forum statistics

Threads
1,215,960
Messages
6,127,943
Members
449,412
Latest member
montand

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top