View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave F Dave F is offline
external usenet poster
 
Posts: 2,574
Default Formula and #VALUE

ISBLANK typically works only on one cell; i.e. =ISBLANK(A1) etc. Since you
are applying it over a range, you need to enter the formula as an array
formula. To do this, put the cursor in the formula bar as if you were
editing the formula and hit CTRL +SHIFT +ENTER

You will note that Excel places { } marks around the formula to indicate
that it is an array formula; however, these are not entered by the user and
doing so does not create the array formula.

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Wanna Learn" wrote:

Hello this is my formula
=IF(ISBLANK(U3:V3)," ",(V3-U3)) and it retunrs #VALUE!
in plain english this is what I need if cells u3 and v3 are blank, then
blank, otherwise v3-u3. thanks