Formula help change every week

zone709

Well-known Member
Joined
Mar 1, 2016
Messages
2,079
Office Version
  1. 365
Platform
  1. Windows
=SUM(C6,E6,G6,I6,K6,M6,O6,Q6,S6,U6,W6,Y6,AA6)

I have so many tabs i have to change every week and update formula. I wanted to see if i can make formula above change every Monday of the week and add next column. You can see it skips every column.

trying to see if this can change very Monday. So next Monday it would add AC6, then next Monday would be AE6

=SUM(C6,E6,G6,I6,K6,M6,O6,Q6,S6,U6,W6,Y6,AA6,AC6)

=SUM(C6,E6,G6,I6,K6,M6,O6,Q6,S6,U6,W6,Y6,AA6,AC6,AE6)

Possible?
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
This could be a solution as long as there is no text in the cells and beside:
=SUMPRODUCT((MOD(COLUMN($C$6:$IV$6),2)=1)*($C$6:$IV$6))
The formula is limited to column IV.
 
Upvote 0
Hi not working and i cant add from C and every column. I need to always skip a column as you can see in this =SUM(C6,E6,G6,I6,K6,M6,O6,Q6,S6,U6,W6,Y6,AA6,AC6,AE6)
 
Upvote 0
Since your data starts from column C (= 3rd, odd number) and you need to skip 1 cell that's what this part of the formula is for: ),2)=1)
 

Attachments

  • SkipOne.jpg
    SkipOne.jpg
    22.8 KB · Views: 5
Last edited:
Upvote 0

Forum statistics

Threads
1,215,345
Messages
6,124,408
Members
449,157
Latest member
mytux

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