Re: $$Excel-Macros$$ Fwd: Help on formula

2011-03-07 Thread Jorge Marques
Oh yes, thank you very much both you, it´s excellent, the more it´s simplified the better, i put in a formula with various conditions!1000 thanks :) 2011/3/7 OpenExcel.com > Hi Jorge, > > > If you want to further reduce your formula size, you can use > =IF(((P3>T3)+(Q3>U3)+(R3>V3)+(S3>W3))>=2,T

Re: $$Excel-Macros$$ Fwd: Help on formula

2011-03-06 Thread OpenExcel.com
Hi Jorge, If you want to further reduce your formula size, you can use =IF(((P3>T3)+(Q3>U3)+(R3>V3)+(S3>W3))>=2,TRUE,FALSE) I only modified Paul's formula. So, Thanks Paul. -- Excel VBA Interview Questions

Re: $$Excel-Macros$$ Fwd: Help on formula

2011-03-04 Thread Jorge Marques
Ahh perfect it condenses the 4 conditions to at least 2, it´s still a little confusing for me to put formula into formulas and organize them. 1001 thanks Paul, Excellent as usual :) 2011/3/3 Paul Schreiner > I would use: > =IF(IF(P3>T3,1,0)+IF(Q3>U3,1,0)+IF(R3>V3,1,0)+IF(S3>W3,1,0)>=2,true,false

Re: $$Excel-Macros$$ Fwd: Help on formula

2011-03-03 Thread Paul Schreiner
I would use: =IF(IF(P3>T3,1,0)+IF(Q3>U3,1,0)+IF(R3>V3,1,0)+IF(S3>W3,1,0)>=2,true,false) Paul From: Jorge Marques To: excel-macros@googlegroups.com Sent: Thu, March 3, 2011 4:39:26 AM Subject: $$Excel-Macros$$ Fwd: Help on formula Hi guys i need a help on a f