Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to correct a formula I'm entering on Excel. The formula is:
=If(A74=E8*E9, ,If(A74<E8*E9,A74+1)); with E8=5, E9=12, and A74=60. The result I am getting is "0", and the result I want is a blank cell. I am trying to produce a loan amortization table where one can vary the amounts and length of the notes. In this case, E8 is the number of years, E9 is the number of payments within a year, and Column A is the payment number. I'm trying to make it where after 60 months in this case, I'll get empty cells instead of cells with "0" in them. Can you help me? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe:
=IF(A74=E8*E9,"",IF(A74<E8*E9,A74+1,"")) This makes the cell look blank, but the cell is not empty. It contains the formula. Bill wrote: I am trying to correct a formula I'm entering on Excel. The formula is: =If(A74=E8*E9, ,If(A74<E8*E9,A74+1)); with E8=5, E9=12, and A74=60. The result I am getting is "0", and the result I want is a blank cell. I am trying to produce a loan amortization table where one can vary the amounts and length of the notes. In this case, E8 is the number of years, E9 is the number of payments within a year, and Column A is the payment number. I'm trying to make it where after 60 months in this case, I'll get empty cells instead of cells with "0" in them. Can you help me? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try ," ", instead of , , for the true part
"Bill" wrote: I am trying to correct a formula I'm entering on Excel. The formula is: =If(A74=E8*E9, ,If(A74<E8*E9,A74+1)); with E8=5, E9=12, and A74=60. The result I am getting is "0", and the result I want is a blank cell. I am trying to produce a loan amortization table where one can vary the amounts and length of the notes. In this case, E8 is the number of years, E9 is the number of payments within a year, and Column A is the payment number. I'm trying to make it where after 60 months in this case, I'll get empty cells instead of cells with "0" in them. Can you help me? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Bill,
You'll need to put in "" rather than leaving blank: =If(A74=E8*E9,"" ,If(A74<E8*E9,A74+1)) If you do need to leave that bit blank, you can hide zero's in Tools/Options and untick 'zero values' hth -- Traa Dy Liooar Jock "Bill" wrote: I am trying to correct a formula I'm entering on Excel. The formula is: =If(A74=E8*E9, ,If(A74<E8*E9,A74+1)); with E8=5, E9=12, and A74=60. The result I am getting is "0", and the result I want is a blank cell. I am trying to produce a loan amortization table where one can vary the amounts and length of the notes. In this case, E8 is the number of years, E9 is the number of payments within a year, and Column A is the payment number. I'm trying to make it where after 60 months in this case, I'll get empty cells instead of cells with "0" in them. Can you help me? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try this idea. You may? want a74 to be $a$74
=IF(e8*d9=a74,"",a74+1) -- Don Guillett Microsoft MVP Excel SalesAid Software "Bill" wrote in message ... I am trying to correct a formula I'm entering on Excel. The formula is: =If(A74=E8*E9, ,If(A74<E8*E9,A74+1)); with E8=5, E9=12, and A74=60. The result I am getting is "0", and the result I want is a blank cell. I am trying to produce a loan amortization table where one can vary the amounts and length of the notes. In this case, E8 is the number of years, E9 is the number of payments within a year, and Column A is the payment number. I'm trying to make it where after 60 months in this case, I'll get empty cells instead of cells with "0" in them. Can you help me? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2002: Vlookup formula not working | Excel Discussion (Misc queries) | |||
array formula(s)- not working, need some help please (problem with an 'AND') | Excel Worksheet Functions | |||
Excel 2000 Formula Not Working Other Users | Excel Discussion (Misc queries) | |||
Excel formula not working | Setting up and Configuration of Excel | |||
Excel formula not working | Excel Discussion (Misc queries) |