Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have this formula to calculate my value balance:
=IF(ISBLANK($C5),$O4-$D5*$L5,$O4+$C5*$L5) This works but when I copy my formula down the column I get repeating values for blank cells. What I want to do is "" is c5 is blank and if it isn't blank I want to do either of the other formulas. Can i have two = if to do this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're going to need to nest another IF testing one of the other values (or
testing C5 again), as =IF(ISBLANK($C5),"",IF($C5="SUBTRACT",$O4-$D5*$L5,$O4+$C5*$L5)) "Peach" wrote: I have this formula to calculate my value balance: =IF(ISBLANK($C5),$O4-$D5*$L5,$O4+$C5*$L5) This works but when I copy my formula down the column I get repeating values for blank cells. What I want to do is "" is c5 is blank and if it isn't blank I want to do either of the other formulas. Can i have two = if to do this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding up values corresponding with repeating names | Excel Discussion (Misc queries) | |||
repeating values | Excel Worksheet Functions | |||
can i stop repeating values? | Excel Discussion (Misc queries) | |||
Y Axis is repeating values - can't figure out why | Excel Discussion (Misc queries) | |||
excluding repeating values | Excel Discussion (Misc queries) |