Link to home
Start Free TrialLog in
Avatar of route217
route217Flag for United Kingdom of Great Britain and Northern Ireland

asked on

edit formula to not show 0 in cell

Hi experts using excel 2010

I am using the following formula in a cell and keep on getting 0 in the cell and I just want show blank...what's wrong..

Formula.Array
{=PROPER(VLOOKUP(C9,CHOOSE({1,2},TABLE1 [0],TABLE1[PROJECT]),2,0),""))}
Avatar of Professor J
Professor J

Because perhaps the match found is zero
So if error cannot help here

So you could add at the beginning IF. Then entire formula inside the parentheses = 0 then , ""
SOLUTION
Avatar of Rgonzo1971
Rgonzo1971

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
like this

=if(PROPER(VLOOKUP(C9,CHOOSE({1,2},TABLE1[0],TABLE1[PROJECT]),2,0),"")=0,"",PROPER(VLOOKUP(C9,CHOOSE({1,2},TABLE1[0],TABLE1[PROJECT]),2,0),""))
Avatar of route217

ASKER

Thanks for the excellent feedback...and prof Jim jam...that edit formula not working..
did you enter with control shift enter?

can you try this

=if((PROPER(VLOOKUP(C9,CHOOSE({1,2},TABLE1 [0],TABLE1[PROJECT]),2,0),""))=0,"",PROPER(VLOOKUP(C9,CHOOSE({1,2},TABLE1 [0],TABLE1[PROJECT]),2,0),"")))
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial