Running Total

  • Thread starter open a adobe file from a command button
  • Start date
O

open a adobe file from a command button

I have a spreadsheet that has 2 columns, column A grows, column B shrinks,
when column B gets to 0 or a negative number I want column A to be blank.

Thank You Very Much
 
F

Fred Smith

Use something like:
=if(b1<=0,"",<yourformula>)

Regards,
Fred.

"open a adobe file from a command button"
 
O

open a adobe file from a command button

Fred, Hi. Thanks that works great! What if I wanted 2 or more cells to be
blank if F5<= 0?

Thanks Again!!
 
J

JBeaucaire

The answer is exactly the same. For every cell that you want to blank out
based on the value in F5, put the formula:

=IF(F5<=0,"",<yourformula>)
 
O

open a adobe file from a command button

Thanks, but I don't understand; my formula is =if(f1<0,"",employee*I66), but
now I want if(f1<0 G1,H1, & I1 are blank, how would that fit in or do I have
to nest if statements?
 
F

Fred Smith

You use either the And or Or function, depending on whether you're checking
for all to be blank, or any one. For example:

=if(and(f1<=0,g1<=0,H1<=0,I1<=0),"",<yourformula>)
=if(or(f1<=0,g1<=0,H1<=0,I1<=0),"",<yourformula>)

Regards,
Fred.

"open a adobe file from a command button"
 
O

open a adobe file from a command button

I see said the blind man!! Thank you very much

Fred Smith said:
You use either the And or Or function, depending on whether you're checking
for all to be blank, or any one. For example:

=if(and(f1<=0,g1<=0,H1<=0,I1<=0),"",<yourformula>)
=if(or(f1<=0,g1<=0,H1<=0,I1<=0),"",<yourformula>)

Regards,
Fred.

"open a adobe file from a command button"
 
F

Fred Smith

Glad I could help. Thanks for the feedback.

Regards,
Fred.

"open a adobe file from a command button"
 

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