to show value = 0 if cell bank

R

ramzi

hi there,

i have formula as below....

=VLOOKUP(J5,'C:\System\[member.xls]member'!$O$2:$P$10064,2,FALSE)

if J5 is blank, it will show some number... how i going to ensure the value
is 0 if J5 is blank.

rgds
 
L

lidaroz

hello,

If I understood you correctly, you can use formula:
=if(J5="",0,VLOOKUP(J5,'C:\System\[member.xls]member'!$O$2:$P$10064,2,FALSE))

The result of this formula will be 0 if J5 is blank

"ramzi" пишет:
 
G

Gary''s Student

=IF(J5="",0,VLOOKUP(J5,'C:\System\[member.xls]member'!$O$2:$P$10064,2,FALSE))
 
R

ramzi

hi lidaroz n Gary,

Thanks for your help. it works..
:)

bye

lidaroz said:
hello,

If I understood you correctly, you can use formula:
=if(J5="",0,VLOOKUP(J5,'C:\System\[member.xls]member'!$O$2:$P$10064,2,FALSE))

The result of this formula will be 0 if J5 is blank

"ramzi" пишет:
hi there,

i have formula as below....

=VLOOKUP(J5,'C:\System\[member.xls]member'!$O$2:$P$10064,2,FALSE)

if J5 is blank, it will show some number... how i going to ensure the value
is 0 if J5 is blank.

rgds
 

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

Top