Sum Offset Formula Help

Puppies72

Board Regular
Joined
Mar 29, 2010
Messages
211
Hi all,

Struggling wth the correct formula here.

In A4 I need a sum offset formula

In B4 I have the number of columns I want totalled (sum)

In C4-DQ4 I have my values

I have tried the formula below in A4 but it doesn't seem to be giving me the right totals - I suspect it is the format of the offset argument that is wrong

=IF(B4="","",SUM($B$4,OFFSET($B$4,0,0,B4,1)))

Any help as always greatly appreciated
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Try
Code:
=IF(B4="","",SUM(OFFSET(C4,0,0,1,B4)))
 
Upvote 0
Nearly there...

tweeking the formula you had slightly..

Code:
=IF(B4="","",SUM($B$4,OFFSET($B$4,0,0,1,B4)))

Do you intend to include B4 in the sum?

if not...

Code:
=IF(B4="","",SUM($C$4,OFFSET($C$4,0,0,1,B4)))

Regards


Roger
 
Upvote 0

Forum statistics

Threads
1,224,560
Messages
6,179,519
Members
452,921
Latest member
BBQKING

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top