J jjackson New Member Joined Nov 21, 2005 Messages 28 Dec 28, 2005 #1 =IF(G20>=1,G20+G19+G18+G17+F21+F20+F19+F18+F17,0) I have been having problems when I put it this way it wont add the two columns. =IF(G20>1,G20:G17,F17:F21,0) Thanks for your help... Jaye
=IF(G20>=1,G20+G19+G18+G17+F21+F20+F19+F18+F17,0) I have been having problems when I put it this way it wont add the two columns. =IF(G20>1,G20:G17,F17:F21,0) Thanks for your help... Jaye
Smitty Legend Joined May 15, 2003 Messages 29,536 Dec 28, 2005 #2 How's this: =IF(G20>1,SUM(G17:G20)+SUM(F17:F21),0) Hope that helps, Smitty
J jjackson New Member Joined Nov 21, 2005 Messages 28 Dec 28, 2005 #3 That helped out so much thanks... The only problem is that I dont want empty cells to show up as a number I want them to show up as a Zero or nothing. Ok I figured it out, I had the wrong numbers in the wrong cells... Sorry... That helped a bunch....
That helped out so much thanks... The only problem is that I dont want empty cells to show up as a number I want them to show up as a Zero or nothing. Ok I figured it out, I had the wrong numbers in the wrong cells... Sorry... That helped a bunch....
B BJungheim Well-known Member Joined Jul 24, 2004 Messages 914 Dec 28, 2005 #4 Why not: =IF(G20>1,SUM(G17:G20,F17:F21),0) ?
Smitty Legend Joined May 15, 2003 Messages 29,536 Dec 28, 2005 #5 Why not: =IF(G20>1,SUM(G17:G20,F17:F21),0) Click to expand... Good point - Brain Fart. Smitty
J jjackson New Member Joined Nov 21, 2005 Messages 28 Dec 29, 2005 #6 Thank you so much for your help... Saved me alot of time with the other formulas...