How to drag and and continue formula sequence?

Yamasaki450

Board Regular
Joined
Oct 22, 2021
Messages
58
Office Version
  1. 2021
Platform
  1. Windows
Hey guys :) I need your help again.

I want to drag and fill the rest of the cells with formulas and continue formula sequence...

In D2 is formula =A2-A3
In E2 is formula =A2-A4
In F2 is formula =A2-A5

So in G2 i want formula =A2-A6 and in H2 i want =A2-A7 and so on... (see the picture)

I there a way to do that without manually entering formula in each cell?

Thanks.
 

Attachments

  • Clipboard03.jpg
    Clipboard03.jpg
    168 KB · Views: 15

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
You could use this formula to produce those results...

=LET(rng,A2:A500,@rng-INDEX(rng,SEQUENCE(,COUNT(rng)-1,2)))
 
Upvote 0
I tried this too but it doesnt work in my version of excel...
According to the documentation that I checked, you have both the LET and SEQUENCE functions in your 2021 version of Excel, and INDEX and COUNT are old legacy functions, so I do not see why my formula did not work. But no matter as @StephenCrump's formula is much, much better than mine.
 
Upvote 0
... so I do not see why my formula did not work.
Nor me.

@Yamasaki450, when you say "it doesn't work", does that mean the formula gives you an error? Or the wrong numbers?

The formula needs to be entered exactly as written - my version of Excel "helpfully" suggests a variation which will produce only a single value, not what we want. So I need to say "No" to that suggestion.

The "@rng"construction also means that the formula must be entered in line with your start value, i.e. somewhere in row 2 in this case. If not, you'll either get incorrect numbers or an error.
 
Upvote 0

Forum statistics

Threads
1,215,101
Messages
6,123,094
Members
449,095
Latest member
gwguy

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