Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If i have a formula A=B+C and there is also another way to get "A", A=D-E
How can i put them in the same cell? Like, if i don't have a value for B&C, but have values for D&E it will calculate it. Thank you, M |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
maybe simple formula setup? if not what need, repost, will modify:
=IF(X1="","",IF(AND(B1<"",C1<""),B1+C1,IF(AND(D1 <"",E1<""),D1+E1,""))) "M" wrote: If i have a formula A=B+C and there is also another way to get "A", A=D-E How can i put them in the same cell? Like, if i don't have a value for B&C, but have values for D&E it will calculate it. Thank you, M |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
i think i get some of it. Whats the "" mean? if i know what, then i can
understand it. "nastech" wrote: maybe simple formula setup? if not what need, repost, will modify: =IF(X1="","",IF(AND(B1<"",C1<""),B1+C1,IF(AND(D1 <"",E1<""),D1+E1,""))) "M" wrote: If i have a formula A=B+C and there is also another way to get "A", A=D-E How can i put them in the same cell? Like, if i don't have a value for B&C, but have values for D&E it will calculate it. Thank you, M |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
just a side note, i'm trying to figure out what "A" would be.
"M" wrote: i think i get some of it. Whats the "" mean? if i know what, then i can understand it. "nastech" wrote: maybe simple formula setup? if not what need, repost, will modify: =IF(X1="","",IF(AND(B1<"",C1<""),B1+C1,IF(AND(D1 <"",E1<""),D1+E1,""))) "M" wrote: If i have a formula A=B+C and there is also another way to get "A", A=D-E How can i put them in the same cell? Like, if i don't have a value for B&C, but have values for D&E it will calculate it. Thank you, M |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi, sorry took so long to get back.
A looks like would just be the output, what you would see as a result; I believe that is why formula's start with a equal "=" sign. the double hack marks refer to nothing. formula's are a boolean algebra approach with: IF(this,then this,else that) the last 2 parts are reversable, i.e.: with IF(this,TRUE,FALSE) order kept, you can fix your result for TRUE or FALSE output. Use Help to lookup index for functions: starting with: IF, AND, OR, TRUE, FALSE, NOT, Operators (=, +, -, < not equal, greater than, < less than...) Errors might occur if you do not allow for FALSE Conditions to be addressed in the formula. The reversable part talking about: IF(false conditions,"", otherwise if false conditions are true, perform the next equations you enter. that is why the example I gave included a double hash at the end, to include all 3 parts of the formula. ------------ "M" wrote: just a side note, i'm trying to figure out what "A" would be. "M" wrote: i think i get some of it. Whats the "" mean? if i know what, then i can understand it. "nastech" wrote: maybe simple formula setup? if not what need, repost, will modify: =IF(X1="","",IF(AND(B1<"",C1<""),B1+C1,IF(AND(D1 <"",E1<""),D1+E1,""))) "M" wrote: If i have a formula A=B+C and there is also another way to get "A", A=D-E How can i put them in the same cell? Like, if i don't have a value for B&C, but have values for D&E it will calculate it. Thank you, M |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Combining multiple formulas in one cell | Excel Worksheet Functions | |||
Please help! I need multiple formulas for one cell! | Excel Discussion (Misc queries) | |||
Help! I need multiple formulas for one cell. | Excel Worksheet Functions | |||
Multiple Formulas in same cell | Excel Worksheet Functions | |||
multiple formulas in one cell | Excel Worksheet Functions |