#VALUE - I WOULD LIKE DO DISPLAY BLANK CELL

HAWK

New Member
Joined
Mar 24, 2002
Messages
19
B16 IS BLANK
C16 IS BLANK
D16 IS BLANK
E16 =IF(ISNA(LOOKUP(B16,$N$16:Q$34)),"",LOOKUP(B16,$N$16:$Q$34))
F16 =IF(ISNA(LOOKUP(B16,$N$16:R$34)),"",LOOKUP(B16,$N$16:$R$34))
G17=IF(ISNA(LOOKUP(B16,$N$16:$S$34)),"",LOOKU(B16,$N$16:$S$34))
L16 =C16*E16
DISPLAYS #VALUE!
HOW DO IS DISPLAY BLANK CELL (REQ'D FOR FORM, THAT I WOULD LIKE TO LEAVE ALL FORMULAS IN
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
On 2002-03-31 18:58, HAWK wrote:
B16 IS BLANK
C16 IS BLANK
D16 IS BLANK
E16 =IF(ISNA(LOOKUP(B16,$N$16:Q$34)),"",LOOKUP(B16,$N$16:$Q$34))
F16 =IF(ISNA(LOOKUP(B16,$N$16:R$34)),"",LOOKUP(B16,$N$16:$R$34))
G17=IF(ISNA(LOOKUP(B16,$N$16:$S$34)),"",LOOKU(B16,$N$16:$S$34))
L16 =C16*E16
DISPLAYS #VALUE!
HOW DO IS DISPLAY BLANK CELL (REQ'D FOR FORM, THAT I WOULD LIKE TO LEAVE ALL FORMULAS IN

Try
L16 =IF(E16="","",C16*E16)
 
Upvote 0
Or similar way is...

L16 =IF(ISBLANK(E16),"",C16*E16)
 
Upvote 0
Hi Hawk

As you are gettin the #VALUE! error the problem is most likely stemming from one of the cells containig Text. Try this

=IF(OR(ISTEXT(C16),ISTEXT(E16)),"",C16*E16)
 
Upvote 0

Forum statistics

Threads
1,213,511
Messages
6,114,054
Members
448,543
Latest member
MartinLarkin

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