IF function - need FALSE to return a blank cell, not 0

G

Guest

I have cells containing employee names, production hours per job and
produciton quantities per job for multiple jobs. I need a function to read
the production hours cell and
1. process a formula is there is a value (TRUE)
2. return a blank cell, rather than zero is there is no value (FALSE)
My ultimate goal is to generate an average productivity % across multiple
jobs and multiple employees.

Example:
Name Hrs/job 1 Parts Hrs/Job 2 Parts Prod.% Job 1 Prod.% Job 2
Avg. Prod
Joe 4 10 75%
<blank> 75%
Mary 4 20 <blank>
100% 100%

Any help will be greatly appreciated!

Thanks. Maestro
 
B

Bondi

I have cells containing employee names, production hours per job and
produciton quantities per job for multiple jobs. I need a function to read
the production hours cell and
1. process a formula is there is a value (TRUE)
2. return a blank cell, rather than zero is there is no value (FALSE)
My ultimate goal is to generate an average productivity % across multiple
jobs and multiple employees.

Example:
Name Hrs/job 1 Parts Hrs/Job 2 Parts Prod.% Job 1 Prod.% Job 2
Avg. Prod
Joe 4 10 75%
<blank> 75%
Mary 4 20 <blank>
100% 100%

Any help will be greatly appreciated!

Thanks. Maestro


Hi Maestro,

You can not get a completely blank cell as a result of a formula. You
can get one that shows nothing with something like:
=IF(a2=value,process,"")

Regards,
Bondi
 

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