if isblank problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have written following formula on technical sheet of my workbook
=if(isblank(q31:q36),0,sum(q31:q36)/4)
which gives me correct answer true version ie 0
but when try to enter on summary sheet as
=if(isblank(technical!q31:q36),0,sum(technical!q31:q36)/4)
i get false version
any ideas why?
Thanks Tina
 
Hi
try
=if(countblank(technical!q31:q36)=6,0,sum(technical!q31:q36)/4)
 
On your summary sheet, do you have formulae in cells q31:q36? If so they aren't blank.

Also have you entered this as an array formula of the same size? Otherwise the results could be surprising.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top