Windows 7 Forums Search
Welcome to Windows 7 Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows 7. The Windows 7 forum also covers news and updates and has an extensive Windows 7 tutorial section that covers a wide range of tips and tricks.


Windows 7 - Excel Formula Help please...

 
11-20-2010   #1


Windows 7 x64 ultimate
 
 

Excel Formula Help please...

This is probably very simple and I have got it working but it isn't working how I want it to work.

I have created an Excel document to show my monthly payments of a bank loan. I have created 3 columns in the first column is the payment number, in the second column is the amount that the loan is after I have made a payment, and in the third column I want to know how much the loan has been reduced by after the bank has taken interest off.

I have just put this formula in the 3rd column, =SUM(D4-D5), and then dragged this formula down into all the other rows I want this to work in which it does. The problem I am having with this is that the number from the 2nd column get placed in the 3rd row, below the amount that has been reduced, and I would like it to stay at £0.00 as it looks better.

Here is what I mean




If you notice the number I enter in the balance column appears in the reduced by column, and I don't want it too because it looks very unprofessional.

Can someone please help me out with this please.

My System SpecsSystem Spec
11-20-2010   #2


Windows 7 x64 pro/ Windows 7 x86 Pro/ XP SP3 x86
 
 


Try using IF ISBLANK.

So, the formula could be something like

=IF(ISBLANK(D5),"",SUM(D4-D5))
My System SpecsSystem Spec
11-20-2010   #3


Windows 7 x64 ultimate
 
 


Quote   Quote: Originally Posted by Bill2 View Post
Try using IF ISBLANK.

So, the formula could be something like

=IF(ISBLANK(D5),"",SUM(D4-D5))

Thanks for that it worked a treat, now I know I am being fussy, but all the cells that had £0.00 in the rest of the spreadsheet have just gone blank.

How can I get the cells to have £0.00 in them again, but keep the value from being carried?
My System SpecsSystem Spec
.


11-20-2010   #4


Windows 7 x64 pro/ Windows 7 x86 Pro/ XP SP3 x86
 
 


Try this.

=IF(ISBLANK(D5),0,SUM(D4-D5))

Otherwise, you could insert a string

=IF(ISBLANK(D5),"£0.00",SUM(D4-D5))

You may need to adjust the formatting etc.
My System SpecsSystem Spec
11-20-2010   #5


Windows 7 x64 ultimate
 
 


Quote   Quote: Originally Posted by Bill2 View Post
Try this.

=IF(ISBLANK(D5),0,SUM(D4-D5))

Otherwise, you could insert a string

=IF(ISBLANK(D5),"£0.00",SUM(D4-D5))

You may need to adjust the formatting etc.

Once again many thanks that was very helpfull I have learned something today, just wish I could rep you more but alas I can only rep you once, if I see you around I will give you some more.
My System SpecsSystem Spec
11-20-2010   #6


Windows 7 Home Premium 64bit
 
 


Another possible is...


You would of course need to drag the formula down through the rest of the column.
Attached Thumbnails
Excel Formula Help please...-excel-formula.jpg  
My System SpecsSystem Spec
11-20-2010   #7


Windows 7 Home Premium 64bit
 
 


Quote   Quote: Originally Posted by Irene View Post
Another possible is...


You would of course need to drag the formula down through the rest of the column.
This formula basically says:
If the number in column 'C' is more than zero, take C3 from C2, otherwise enter zero in the column 'D' cell.
My System SpecsSystem Spec
Reply

 Excel Formula Help please... problems?



Thread Tools



Similar Threads for: Excel Formula Help please...
Thread Forum
Excel 2003 Suddenly Stopped Responding to Formula Changes Microsoft Office
Solved Excel 2003 sum formula problem Microsoft Office
Solved Want to copy data and formula from one Excel Sheet to another. Microsoft Office
excel syntax problem for formula... difference in days Microsoft Office
Cant scroll while editing formula Excel 2007 Microsoft Office


All times are GMT -5. The time now is 05:38 PM.



Windows 7 Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows 7" and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd
  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30