#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15
Default Running Total

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
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Running Total

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

Regards,
Fred.

"open a adobe file from a command button"
osoft.com wrote in
message ...
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


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15
Default Running Total

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

Thanks Again!!

"Fred Smith" wrote:

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

Regards,
Fred.

"open a adobe file from a command button"
osoft.com wrote in
message ...
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



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 222
Default Running Total

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)

--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"open a adobe file from a command button" wrote:

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

Thanks Again!!

"Fred Smith" wrote:

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

Regards,
Fred.

"open a adobe file from a command button"
osoft.com wrote in
message ...
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



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15
Default Running Total

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?

"JBeaucaire" wrote:

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)

--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"open a adobe file from a command button" wrote:

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

Thanks Again!!

"Fred Smith" wrote:

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

Regards,
Fred.

"open a adobe file from a command button"
osoft.com wrote in
message ...
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




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Running Total

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"
osoft.com wrote in
message ...
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?

"JBeaucaire" wrote:

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)

--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"open a adobe file from a command button" wrote:

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

Thanks Again!!

"Fred Smith" wrote:

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

Regards,
Fred.

"open a adobe file from a command button"
osoft.com wrote in
message ...
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



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15
Default Running Total

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

"Fred Smith" wrote:

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"
osoft.com wrote in
message ...
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?

"JBeaucaire" wrote:

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)

--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"open a adobe file from a command button" wrote:

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

Thanks Again!!

"Fred Smith" wrote:

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

Regards,
Fred.

"open a adobe file from a command button"
osoft.com wrote in
message ...
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




  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Running Total

Glad I could help. Thanks for the feedback.

Regards,
Fred.

"open a adobe file from a command button"
osoft.com wrote in
message ...
I see said the blind man!! Thank you very much

"Fred Smith" wrote:

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"
osoft.com wrote in
message ...
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?

"JBeaucaire" wrote:

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)

--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"open a adobe file from a command button" wrote:

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

Thanks Again!!

"Fred Smith" wrote:

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

Regards,
Fred.

"open a adobe file from a command button"
osoft.com wrote
in
message ...
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





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Duplicate Running Total Grand Total In Pivot Table Mathew P Bennett[_2_] Excel Discussion (Misc queries) 1 August 17th 08 03:13 AM
running total Rachel Excel Worksheet Functions 2 November 15th 07 07:56 PM
running total and average of that total after 3 events belvy123 Excel Discussion (Misc queries) 0 March 28th 07 02:57 AM
running total and average of that total after 3 events Toppers Excel Discussion (Misc queries) 1 March 28th 07 02:19 AM
Running Total D.J.Shaw Excel Worksheet Functions 1 July 8th 05 04:07 PM


All times are GMT +1. The time now is 03:16 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"