MS Office Forum / Excel / Worksheet Functions / June 2007
formula using several colums
|
|
Thread rating:  |
jv - 18 Jun 2007 16:32 GMT I need a formula that would subtract 200,000 from a cell and if the result is a minus, zero would be put in the cell.
I also need a formula that check coulme a, b, c, d and if a could exists it subtracts an amount from column f
Thanks in advance
JE McGimpsey - 18 Jun 2007 16:36 GMT One way:
a) =MAX(A1-200000,0)
b) Not sure what you mean.
> I need a formula that would subtract 200,000 from a cell and if the result is > a minus, zero would be put in the cell. [quoted text clipped - 3 lines] > > Thanks in advance jv - 18 Jun 2007 16:54 GMT The formula would look in colums a b c d and if SX is present them the formula would subtract $100,000 is result isd a minus it would put zero in the cell, If SX is not present the formula would subtract $50,000 and if the result is a minus it would put zero in the cell
A B C D E F HX WR VX SX $100,000 SX HX WR VX $150,000 HX VX SX $75,000 WR VX HX SX $175,000 HX WR VX $200,000 HX SX VX HX WR VX HX WX 11
> One way: > [quoted text clipped - 9 lines] > > > > Thanks in advance JE McGimpsey - 18 Jun 2007 16:58 GMT I can't tell with your linewrap what you're subtracting 50,000 or 100,000 from.
Assuming it's the values in A:D (e.g., SUM(A1:D1) for row 1), one way:
=MAX(SUM(A1:D1)-50000*(1+(COUNTIF(A1:D1,"*SX*")>0)),0)
> The formula would look in colums a b c d and if SX is present them the > formula would subtract $100,000 is result isd a minus it would put zero in [quoted text clipped - 24 lines] > > > > > > Thanks in advance jv - 18 Jun 2007 17:06 GMT In columns a1:d1the formula would be looking for a code SX If present the formula would subtract $100,000 from colume E1 and if the result is a negative it woud put a zero. If SX is NOT present in A1:D1 then the formula would subtract $50,000 from E1 and if the result is a negative put a zero in the cell
> I can't tell with your linewrap what you're subtracting 50,000 or > 100,000 from. [quoted text clipped - 31 lines] > > > > > > > > Thanks in advance JE McGimpsey - 18 Jun 2007 17:12 GMT Then replace the SUM(A1:D1) in the formula I suggested with E1
> In columns a1:d1the formula would be looking for a code SX If present the > formula would subtract $100,000 from colume E1 and if the result is a [quoted text clipped - 24 lines] > > > HX SX VX HX WR VX > > > HX WX 11 Don Guillett - 18 Jun 2007 17:02 GMT =MAX(A2-IF(COUNTIF(A1:D1,"sx")>0,100000,50000),0)
 Signature Don Guillett SalesAid Software dguillett1@austin.rr.com
> The formula would look in colums a b c d and if SX is present them the > formula would subtract $100,000 is result isd a minus it would put zero in [quoted text clipped - 25 lines] >> > >> > Thanks in advance jv - 18 Jun 2007 17:50 GMT =MAX(p2-IF(COUNTIF(F2,H2,J2,L2,"sx")>0,100000,50000),0)
This is the formula with the true cells listed. I get an error when trying to use this
> =MAX(A2-IF(COUNTIF(A1:D1,"sx")>0,100000,50000),0) > [quoted text clipped - 27 lines] > >> > > >> > Thanks in advance Don Guillett - 18 Jun 2007 18:00 GMT You DIDN'T say so.!! Always best to fully explain your needs so as to not waste time of responders. Try this
=MAX(A2-IF(SUMPRODUCT(COUNTIF(INDIRECT({"b1","d1","f1","j1"}),"sx"))>0,100000,50000),0)
 Signature Don Guillett SalesAid Software dguillett1@austin.rr.com
> =MAX(p2-IF(COUNTIF(F2,H2,J2,L2,"sx")>0,100000,50000),0) > [quoted text clipped - 35 lines] >> >> > >> >> > Thanks in advance jv - 18 Jun 2007 18:15 GMT Thank you, I will try to be more specific next time.
> You DIDN'T say so.!! Always best to fully explain your needs so as to not > waste time of responders. Try this [quoted text clipped - 40 lines] > >> >> > > >> >> > Thanks in advance jv - 18 Jun 2007 19:06 GMT One more question,
When i paste this formula to other cells, see below, it does not move the cell row number
=MAX(P12-IF(SUMPRODUCT(COUNTIF(INDIRECT({"f2","h2","j2","l2"}),"sx"))>0,100000,50000),0)
I am on row 12 but mu reference is still on f2, h2, j2, l2 so to results are in error
> Thank you, I will try to be more specific next time. > [quoted text clipped - 42 lines] > > >> >> > > > >> >> > Thanks in advance Don Guillett - 18 Jun 2007 23:22 GMT try this copied down =MAX(0,A2-IF(SUMPRODUCT(--(F2:L2="sx"),--(MOD(COLUMN(F2:L2),2)=0))>0,100000,50000))
 Signature Don Guillett SalesAid Software dguillett1@austin.rr.com
> > One more question, [quoted text clipped - 61 lines] >> > >> >> > >> > >> >> > Thanks in advance Max - 18 Jun 2007 16:40 GMT > I need a formula that would subtract 200,000 from a cell and if the result is > a minus, zero would be put in the cell. One way ..
Try in say, B2: =MAX(A2-200000,0)
 Signature Max Singapore http://savefile.com/projects/236895 xdemechanik ---
Don Guillett - 18 Jun 2007 16:40 GMT Homework??
=MAX(G11-200000,0) for the second one explore using MATCH or LOOKUP
 Signature Don Guillett SalesAid Software dguillett1@austin.rr.com
>I need a formula that would subtract 200,000 from a cell and if the result >is [quoted text clipped - 5 lines] > > Thanks in advance
|
|
|