Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,388
Default Formula To Keep Certain Cells Blank

I have a small payment record. Example. Cell A1 - Shows Original Balance -
Cell B1 - Shows Date Paid - C1 - Shows Amount Paid - Cell D1 - Shows
Remaining Balance.

As a payment is received, I insert the date received (B1) and the amount
received (C1). My existisng formula then subtracts C1 (amount paid) from A1
(original balance) and shows this amount in Cell D1. Pretty straight forward.
Problem.

Since the subtraction formula for these two cells are located in Cells D1 -
D12 (example), the existing balance is shown in all the cells all the way
down to D cell's. I want all cells left blank in the D cells until I enter an
amount paid in the C cells. Currently the existisng balance is shown in all
the D cells.

I hope this makes sense.

Thank you,
Dave
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default Formula To Keep Certain Cells Blank

Suppose the formula in D3 is:

=D2-C3

Basically the old balance less the new payment. Instead use:

=IF(C3="","",D2-C3)

The formula will be invisible until the data has been entered in column C.
--
Gary''s Student - gsnu200784


"Dave" wrote:

I have a small payment record. Example. Cell A1 - Shows Original Balance -
Cell B1 - Shows Date Paid - C1 - Shows Amount Paid - Cell D1 - Shows
Remaining Balance.

As a payment is received, I insert the date received (B1) and the amount
received (C1). My existisng formula then subtracts C1 (amount paid) from A1
(original balance) and shows this amount in Cell D1. Pretty straight forward.
Problem.

Since the subtraction formula for these two cells are located in Cells D1 -
D12 (example), the existing balance is shown in all the cells all the way
down to D cell's. I want all cells left blank in the D cells until I enter an
amount paid in the C cells. Currently the existisng balance is shown in all
the D cells.

I hope this makes sense.

Thank you,
Dave

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 127
Default Formula To Keep Certain Cells Blank

=IF(C1="","",C1-A1)

Does that help?


"Dave" wrote in message
...
I have a small payment record. Example. Cell A1 - Shows Original Balance -
Cell B1 - Shows Date Paid - C1 - Shows Amount Paid - Cell D1 - Shows
Remaining Balance.

As a payment is received, I insert the date received (B1) and the amount
received (C1). My existisng formula then subtracts C1 (amount paid) from
A1
(original balance) and shows this amount in Cell D1. Pretty straight
forward.
Problem.

Since the subtraction formula for these two cells are located in Cells
D1 -
D12 (example), the existing balance is shown in all the cells all the way
down to D cell's. I want all cells left blank in the D cells until I enter
an
amount paid in the C cells. Currently the existisng balance is shown in
all
the D cells.

I hope this makes sense.

Thank you,
Dave



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,388
Default Formula To Keep Certain Cells Blank

Works perfectly. Thank you both very much. Interesting since I asked this
same question to the instructor of the Excel 2007 class I am taking and the
instructor did not know the answer.

"Gaurav" wrote:

=IF(C1="","",C1-A1)

Does that help?


"Dave" wrote in message
...
I have a small payment record. Example. Cell A1 - Shows Original Balance -
Cell B1 - Shows Date Paid - C1 - Shows Amount Paid - Cell D1 - Shows
Remaining Balance.

As a payment is received, I insert the date received (B1) and the amount
received (C1). My existisng formula then subtracts C1 (amount paid) from
A1
(original balance) and shows this amount in Cell D1. Pretty straight
forward.
Problem.

Since the subtraction formula for these two cells are located in Cells
D1 -
D12 (example), the existing balance is shown in all the cells all the way
down to D cell's. I want all cells left blank in the D cells until I enter
an
amount paid in the C cells. Currently the existisng balance is shown in
all
the D cells.

I hope this makes sense.

Thank you,
Dave




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Formula To Keep Certain Cells Blank

Sounds as if you deserve your money back for that class. :-(
--
David Biddulph

"Dave" wrote in message
...
Works perfectly. Thank you both very much. Interesting since I asked this
same question to the instructor of the Excel 2007 class I am taking and
the
instructor did not know the answer.

"Gaurav" wrote:

=IF(C1="","",C1-A1)

Does that help?


"Dave" wrote in message
...
I have a small payment record. Example. Cell A1 - Shows Original
Balance -
Cell B1 - Shows Date Paid - C1 - Shows Amount Paid - Cell D1 - Shows
Remaining Balance.

As a payment is received, I insert the date received (B1) and the
amount
received (C1). My existisng formula then subtracts C1 (amount paid)
from
A1
(original balance) and shows this amount in Cell D1. Pretty straight
forward.
Problem.

Since the subtraction formula for these two cells are located in Cells
D1 -
D12 (example), the existing balance is shown in all the cells all the
way
down to D cell's. I want all cells left blank in the D cells until I
enter
an
amount paid in the C cells. Currently the existisng balance is shown in
all
the D cells.

I hope this makes sense.

Thank you,
Dave








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 127
Default Formula To Keep Certain Cells Blank

I strongly agree.


"David Biddulph" <groups [at] biddulph.org.uk wrote in message
...
Sounds as if you deserve your money back for that class. :-(
--
David Biddulph

"Dave" wrote in message
...
Works perfectly. Thank you both very much. Interesting since I asked this
same question to the instructor of the Excel 2007 class I am taking and
the
instructor did not know the answer.

"Gaurav" wrote:

=IF(C1="","",C1-A1)

Does that help?


"Dave" wrote in message
...
I have a small payment record. Example. Cell A1 - Shows Original
Balance -
Cell B1 - Shows Date Paid - C1 - Shows Amount Paid - Cell D1 - Shows
Remaining Balance.

As a payment is received, I insert the date received (B1) and the
amount
received (C1). My existisng formula then subtracts C1 (amount paid)
from
A1
(original balance) and shows this amount in Cell D1. Pretty straight
forward.
Problem.

Since the subtraction formula for these two cells are located in Cells
D1 -
D12 (example), the existing balance is shown in all the cells all the
way
down to D cell's. I want all cells left blank in the D cells until I
enter
an
amount paid in the C cells. Currently the existisng balance is shown
in
all
the D cells.

I hope this makes sense.

Thank you,
Dave







  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,388
Default Formula To Keep Certain Cells Blank

Would I be correct in assuming that "","", means "blank" anytime it is
inserted in a formula? As far as the class goes, it is a strictly by the
classbook instruction with guidance only from the instructor while we do each
exercise from the book on the computer. I do feel the instructor should have
known the answer however. Again thank you all very much. The primary reason I
took this course was to learn "formulas" and how to create them. I suspect I
will lose on that end. Again, thank each and everyone of you.

"Gaurav" wrote:

I strongly agree.


"David Biddulph" <groups [at] biddulph.org.uk wrote in message
...
Sounds as if you deserve your money back for that class. :-(
--
David Biddulph

"Dave" wrote in message
...
Works perfectly. Thank you both very much. Interesting since I asked this
same question to the instructor of the Excel 2007 class I am taking and
the
instructor did not know the answer.

"Gaurav" wrote:

=IF(C1="","",C1-A1)

Does that help?


"Dave" wrote in message
...
I have a small payment record. Example. Cell A1 - Shows Original
Balance -
Cell B1 - Shows Date Paid - C1 - Shows Amount Paid - Cell D1 - Shows
Remaining Balance.

As a payment is received, I insert the date received (B1) and the
amount
received (C1). My existisng formula then subtracts C1 (amount paid)
from
A1
(original balance) and shows this amount in Cell D1. Pretty straight
forward.
Problem.

Since the subtraction formula for these two cells are located in Cells
D1 -
D12 (example), the existing balance is shown in all the cells all the
way
down to D cell's. I want all cells left blank in the D cells until I
enter
an
amount paid in the C cells. Currently the existisng balance is shown
in
all
the D cells.

I hope this makes sense.

Thank you,
Dave








  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Formula To Keep Certain Cells Blank

It's not "","", but "" that means blank. Quote marks "" are used to delimit
a text string, and if there is nothing between the quote marks the string
has zero length (which isn't quite the same as an empty cell, but for many
purposes they are close enough).
--
David Biddulph

"Dave" wrote in message
...
Would I be correct in assuming that "","", means "blank" anytime it is
inserted in a formula? As far as the class goes, it is a strictly by the
classbook instruction with guidance only from the instructor while we do
each
exercise from the book on the computer. I do feel the instructor should
have
known the answer however. Again thank you all very much. The primary
reason I
took this course was to learn "formulas" and how to create them. I suspect
I
will lose on that end. Again, thank each and everyone of you.

"Gaurav" wrote:

I strongly agree.


"David Biddulph" <groups [at] biddulph.org.uk wrote in message
...
Sounds as if you deserve your money back for that class. :-(
--
David Biddulph

"Dave" wrote in message
...
Works perfectly. Thank you both very much. Interesting since I asked
this
same question to the instructor of the Excel 2007 class I am taking
and
the
instructor did not know the answer.

"Gaurav" wrote:

=IF(C1="","",C1-A1)

Does that help?


"Dave" wrote in message
...
I have a small payment record. Example. Cell A1 - Shows Original
Balance -
Cell B1 - Shows Date Paid - C1 - Shows Amount Paid - Cell D1 -
Shows
Remaining Balance.

As a payment is received, I insert the date received (B1) and the
amount
received (C1). My existisng formula then subtracts C1 (amount paid)
from
A1
(original balance) and shows this amount in Cell D1. Pretty
straight
forward.
Problem.

Since the subtraction formula for these two cells are located in
Cells
D1 -
D12 (example), the existing balance is shown in all the cells all
the
way
down to D cell's. I want all cells left blank in the D cells until
I
enter
an
amount paid in the C cells. Currently the existisng balance is
shown
in
all
the D cells.

I hope this makes sense.

Thank you,
Dave










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
Formula to sum blank cells rldjda Excel Worksheet Functions 2 March 23rd 08 06:29 AM
Formula Help: Add cells with certain text + cells that are blank Nicole L. Excel Worksheet Functions 3 February 27th 07 06:59 AM
Need blank formula cells rather than 0's Carl Excel Worksheet Functions 3 September 29th 06 03:43 PM
How do i keep cells blank until the formula is used? Ellen Excel Discussion (Misc queries) 4 February 3rd 06 12:44 PM
simple formula with blank cells Brian Excel Worksheet Functions 1 April 1st 05 04:41 AM


All times are GMT +1. The time now is 10:46 PM.

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"