![]() |
sum of a column
Hi guys, I am in need of a wee hand.
I have 2 columns, C & D. C is a weekly column where an amount is placed for example 150. D is the difference between each week. i.e C3 and C4 , C4 and C5 and so on. Above these two colums is a merged cell of C & D giving me the sum of the total loss of Column D What the problem is that because next week for example has no data in Col C, Col D gives me the difference between this week and next week of 150 instead of 0 because there is no data for next week. Can some one tell me how to overcome this wee snag? Cheers in advance guys |
sum of a column
Anticipate the missing data.
Instead of a formula like: =C4-C3 use =IF(C4="","",C4-C3) -- Gary''s Student - gsnu200732 "Andy Sibbs" wrote: Hi guys, I am in need of a wee hand. I have 2 columns, C & D. C is a weekly column where an amount is placed for example 150. D is the difference between each week. i.e C3 and C4 , C4 and C5 and so on. Above these two colums is a merged cell of C & D giving me the sum of the total loss of Column D What the problem is that because next week for example has no data in Col C, Col D gives me the difference between this week and next week of 150 instead of 0 because there is no data for next week. Can some one tell me how to overcome this wee snag? Cheers in advance guys |
sum of a column
You probably need to wrap your formula in an IF statement...........post
your formula, someone will help. Vaya con Dios, Chuck, CABGx3 "Andy Sibbs" wrote in message ... Hi guys, I am in need of a wee hand. I have 2 columns, C & D. C is a weekly column where an amount is placed for example 150. D is the difference between each week. i.e C3 and C4 , C4 and C5 and so on. Above these two colums is a merged cell of C & D giving me the sum of the total loss of Column D What the problem is that because next week for example has no data in Col C, Col D gives me the difference between this week and next week of 150 instead of 0 because there is no data for next week. Can some one tell me how to overcome this wee snag? Cheers in advance guys |
sum of a column
Something like:
=IF(C4="",0,C4-C3) and drag down column D Regards Trevor "Andy Sibbs" wrote in message ... Hi guys, I am in need of a wee hand. I have 2 columns, C & D. C is a weekly column where an amount is placed for example 150. D is the difference between each week. i.e C3 and C4 , C4 and C5 and so on. Above these two colums is a merged cell of C & D giving me the sum of the total loss of Column D What the problem is that because next week for example has no data in Col C, Col D gives me the difference between this week and next week of 150 instead of 0 because there is no data for next week. Can some one tell me how to overcome this wee snag? Cheers in advance guys |
sum of a column
Top class, works a treat. Thank you
"Gary''s Student" wrote: Anticipate the missing data. Instead of a formula like: =C4-C3 use =IF(C4="","",C4-C3) -- Gary''s Student - gsnu200732 "Andy Sibbs" wrote: Hi guys, I am in need of a wee hand. I have 2 columns, C & D. C is a weekly column where an amount is placed for example 150. D is the difference between each week. i.e C3 and C4 , C4 and C5 and so on. Above these two colums is a merged cell of C & D giving me the sum of the total loss of Column D What the problem is that because next week for example has no data in Col C, Col D gives me the difference between this week and next week of 150 instead of 0 because there is no data for next week. Can some one tell me how to overcome this wee snag? Cheers in advance guys |
All times are GMT +1. The time now is 07:23 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com