G Guest Aug 1, 2004 #1 I have a spreadsheet that got text and figure data in different columns. I want to add in a formula whereby if column B = JP and column D = Y, then it will add the figure in column J. Is this possible?
I have a spreadsheet that got text and figure data in different columns. I want to add in a formula whereby if column B = JP and column D = Y, then it will add the figure in column J. Is this possible?
F Fred Smith Aug 1, 2004 #2 To use multiple conditions, use the AND function, eg: =if(and(b=jp,d=Y),true,false) -- Regards, Fred Please reply to newsgroup, not e-mail yvonneb said: I have a spreadsheet that got text and figure data in different columns. Click to expand... I want to add in a formula whereby if column B = JP and column D = Y, then it will add the figure in column J. Is this possible?
To use multiple conditions, use the AND function, eg: =if(and(b=jp,d=Y),true,false) -- Regards, Fred Please reply to newsgroup, not e-mail yvonneb said: I have a spreadsheet that got text and figure data in different columns. Click to expand... I want to add in a formula whereby if column B = JP and column D = Y, then it will add the figure in column J. Is this possible?
D Domenic Aug 1, 2004 #4 Hi, =SUMPRODUCT(--(B1:B100="JP"),--(D1100="Y"),J1:J100) and adjust the range accordingly Hope this helps!
Hi, =SUMPRODUCT(--(B1:B100="JP"),--(D1100="Y"),J1:J100) and adjust the range accordingly Hope this helps!