How to auto-fill a numbered series WITHOUT a mouse (keyboard only) on Google Sheets

6

Is there a way to fill down a series using just the keyboard instead of the mouse? This is that function where you highlight a group of cells, then click on the bottom right corner of the highlighted box, and drag down with the mouse to make a series list.

see screenshot - numbered list

I've found shortcuts to do this in Excel: Excel Auto-Fill a Series Without Mouse (Keyboard Only) but they don't work on Google Sheets.

I have some wrist issues and have been minimizing mouse usage as a result. I'd appreciate hearing about some shortcuts since I need to do this every day! Thank you!

Joanne

Posted 2017-08-25T17:17:59.260

Reputation: 61

Question was closed 2018-03-08T06:19:19.977

Related: Excel: Auto-Fill a Series without Mouse (Keyboard Only).  But, for questions about Google Sheets, you should go to Web Applications Stack Exchange.

– Scott – 2018-07-28T20:30:19.653

Answers

2

If you just want to increment numbers as you go down a column, say from A1 to A100, so that you have the number 1 in A1 and the number 100 in A100, you could

  1. Type the number 1 (or whatever number you want to start with) in cell A1.
  2. Type the formula =A1+1 in cell A2. This will put the number 2 in cell A2.  Use the step (increment) value you want here.  For example, if you want the series 10, 13, 16, 19, 22, 25, …, enter 10 in A1 and =A1+3 in A2.
  3. Go to cell A2 using the cursor keys on the keyboard.
  4. With the cell A2 now highlighted, while holding down a Shift key, use the down arrow key on the keyboard to get to the last cell where you want your series to end. You can then release the Shift key. This selects all cells from A2 to the end.
  5. Hit Ctrl+D. This will copy the formula from A2 down through all the selected cells, so that in cell A100 you would have the formula =A99+1, which will put the value 100 in cell A100.
  6. (Optional) Hit Ctrl+C and then Ctrl+Shift+V. This will copy the already-selected cells and then paste only their values, as opposed to the formulas that were there at the end of step 5.

moonpoint

Posted 2017-08-25T17:17:59.260

Reputation: 4 432

0

I didn't find such combination in all hotkeys list.

Possible solutions:

  • slow but built-in: To use mouse control from the keyboard. Enabled by: Control Panel\All Control Panel Items\Ease of Access Center\Set up Mouse Keys. Here is YouTube video of config and use

  • Try to use vertical mouse (google it). In my case of the shelf MS Sculpt Ergonomic Mouse solved wrist issue.

  • Implement or find already implemented script that will do this task of pointing mouse and dragging it. Possibly with AutoIt or its alternatives.

AlBaZ

Posted 2017-08-25T17:17:59.260

Reputation: 34

-1

Yes. Just 'copy' cell, select target range and 'paste'.

Masterhard

Posted 2017-08-25T17:17:59.260

Reputation: 1

1

Welcome to superuser: While this may or may not answer the question, it would be a better answer if you could provide some more explanation why your solution works with detail and an easy to follow instructions. If you feel your answer is correct do these things and re-edit. Please take a couple of minutes and read:- http://superuser.com/help .Answering: http://superuser.com/help/how-to-answer, again welcome to superuser.Thankyou

– mic84 – 2018-03-08T04:37:55.630

Does this fill a series or just a value?  It looks like it fills just *a value*. The question asks how to auto-fill a series; e.g., enter 10, 13 and 16, and get 19, 22, 25, … – Scott – 2018-07-28T20:35:05.120