Forum Discussion
NikolinoDE
Oct 27, 2023Gold Contributor
To fill cells in Excel with an increment of 10 instead of 1, you can use the AutoFill feature with a custom fill series. Here's how you can do it:
- Type your starting value in a cell (e.g., A1).
- In the cell below it (e.g., A2), enter the value 10 more than the starting value (A1 + 10). In this example, it's "=A1+10."
- Select both cells (A1 and A2).
- Move your cursor to the bottom right corner of the selected cells (you'll see a small square called the "fill handle").
- Click and drag the fill handle down for as many cells as you need. Excel will automatically increment by 10 for each cell.
Release the mouse button, and Excel will fill the selected cells with values incremented by 10.
For example, if A1 had the value 10, and you drag the fill handle down, you'll get a sequence in cells A2, A3, A4, and so on, with increments of 10 (20, 30, 40, and so on).
This method allows you to easily create a series of values with a specified increment. The text was created with the help of AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and like it!
This will help all forum participants.
- JoeengrOct 27, 2023Copper Contributor
in one cell
=pattern!B2+pattern!B3*2+pattern!B4*4+pattern!B5*8+pattern!B6*16+pattern!B7*32+pattern!B8*64+pattern!B9*128
WANT next row (one down)
=pattern!B12+pattern!B13*2+pattern!B14*4+pattern!B15*8+pattern!B16*16+pattern!B17*32+pattern!B18*64+pattern!B19*128
NOT
=pattern!B3+pattern!B4*2+pattern!B5*4+pattern!B6*8+pattern!B7*16+pattern!B8*32+pattern!B9*64+pattern!B10*128