![]() |
How do i add multiple formulas in one cell for excel?
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 |
How do i add multiple formulas in one cell for excel?
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 |
How do i add multiple formulas in one cell for excel?
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 |
How do i add multiple formulas in one cell for excel?
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 |
How do i add multiple formulas in one cell for excel?
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 |
All times are GMT +1. The time now is 10:06 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com