Existe um oposto de ctrl d de preenchimento?
Não diretamente, no entanto:
you can fill up, but it's not a keyboard shortcut. In 2010, goto home, in the editing section (far right), second icon down on the left is fill.
Ou:
ShiftUp, F2, CtrlEnter
Source Existe um oposto do ctrl + d preencha
Ou use a macro a seguir:
- Tools > Macro > Record New macro
- Macro Name: FillUp, Short Cut: Ctrl+****+U (Because Ctrl+U is unavaliable)
- Stop recording
Alt+F11, open the VBA Use the following code to overwrite the code in Modules, Sub FillUp()
ActiveCell.Offset(1, 0).Select Selection.Copy ActiveCell.Offset(-1, 0).Select ActiveSheet.Paste Application.CutCopyMode = False
Save
...
how can I code it to work on multiple selected cells, like a row of data?
...
I got it. Just changed 'ActiveCell' to 'Selection'
Fonte Crie um atalho para "Preencher"