View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Harlan Grove[_2_] Harlan Grove[_2_] is offline
external usenet poster
 
Posts: 1,231
Default Countif using tab range

Luke M wrote...
....
Unfortunately, COUNTIF is not a 3d function. You can do it with a helper
cell though.

....
=COUNTIF('TAB1:TAB5'!F:F,'Summary'!A2)

....

This is a typo. As you correctly point out, COUNTIF doesn't support 3D
references, so the formula above will return #VALUE! errors. You'd
need to use

=COUNTIF(F:F,'Summary'!A2)