Sum every 4th column

rplohocky

Active Member
Joined
Sep 25, 2005
Messages
292
Office Version
  1. 365
Platform
  1. Windows
Hello,
I have searched high and low to find a basic formula to add up every 4th column and every formula I have tried has failed. I am trying to add every 4th cell from each column. Example: Add C3+G3+K3+O3, etc. Can anyone provide a formula to do this?

The range starts at A3 through BS3. It can be an array if necessary.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
1234567891011121314151617
2.3285760.7234022.12152514.0926210.247887.9735199.52322814.216210.02363214.6818.68536913.600212.2734149.78661516.9369913.7588112.89917
aim - sum A3,e3,i3,m3,q3
2.32857610.247880.0236322.27341412.89917
this 4 obtained by
=IF(ISERROR(MATCH(A1,$N$20:$N$24,0)),"",A3)
total is clearly then sum of a10:gz10)
1
5
9
13
17

<colgroup><col span="18"></colgroup><tbody>
</tbody>
 
Upvote 0
1234567891011121314151617
2.3285760.7234022.12152514.0926210.247887.9735199.52322814.216210.02363214.6818.68536913.600212.2734149.78661516.9369913.7588112.89917
aim - sum A3,e3,i3,m3,q3
2.32857610.247880.0236322.27341412.89917
this 2.32 obtained by
=IF(ISERROR(MATCH(A1,$N$20:$N$24,0)),"",A3)
total is clearly then sum of a10:gz10)
1
5
9
13
17

<colgroup><col span="18"></colgroup><tbody>
</tbody>
 
Upvote 0
Try this

Enter a blank row at column A. I cell C1 put a 1. In cell d1 enter if (c1=4,1,c1+1) copy it across the row.

In the cell where you want the sum enter =sumif(C1:BS1,4,C3:BS3). Change the range required.
 
Upvote 0

Forum statistics

Threads
1,215,819
Messages
6,127,045
Members
449,356
Latest member
tstapleton67

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