在 Calc 中使用键盘移动行

在 Calc 中使用键盘移动行

如何用键盘将一行移到不同的位置?我发现本指南适用于鼠标但由于残疾,我无法使用鼠标来做这件事。

请注意,我并不想“手动排序”,而且使用额外的“排序序数”列也不是可行的解决方法。不过我知道 Calc 的排序能力非常出色。

答案1

我不确定是否有办法使用键盘“移动”行,但使用 c&p 并使用键盘插入/删除行应该提供相同的功能:

  • 导航到要移动的行的第一个(最左边)单元格;
  • SHIFT+SPACE选择整行;
  • CTRL+C复制该行;
  • CTRL+-删除当前行;
  • 导航到目标行;
  • ALT+I打开Insert菜单;
  • 点击R插入新行(当前行将向下移动);
  • CTRL+V将行粘贴到新位置。

由于剪切和粘贴操作有时非常烦人,您可以创建一个简单的宏来剪切单元格,并创建另一个宏来粘贴它们,将现有内容向下移动。

这是一个“移动”选定单元格的非常简单的代码:

Option Explicit

Sub CopyAndCut
    ' ---------------------------------------------------------
    ' define variables
    Dim document   as object
    Dim dispatcher as Object
    Dim oSelections As Object
    ' ---------------------------------------------------------
    ' get access to the document and selections (if any)
    document    = ThisComponent.CurrentController.Frame
    oSelections = ThisComponent.getCurrentSelection()
    If IsNull(oSelections) Then Exit Sub        
    ' ---------------------------------------------------------
    dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
    dispatcher.executeDispatch(document, ".uno:Copy", "", 0, Array())
    dispatcher.executeDispatch(document, ".uno:Cut", "", 0, Array())
    ' -------------------------------------------------------------
    ' Check the width of the selection - if 1024 columns, we assume
    ' the complete row was selected and should get deleted
    If 1024 = oSelections.Columns.getCount() Then
        dispatcher.executeDispatch(document, ".uno:DeleteRows", "", 0, Array())
    End If
End Sub

Sub InsertWithMoveDown
    ' ---------------------------------------------------------
    ' define variables
    Dim document   as object
    Dim dispatcher as object
    ' ---------------------------------------------------------
    ' get access to the document
    document   = ThisComponent.CurrentController.Frame
    dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
    ' ---------------------------------------------------------
    ' Paste contents with "Move Down" option
    Dim args1(5) as New com.sun.star.beans.PropertyValue
    args1(0).Name = "Flags"
    args1(0).Value = "A"
    args1(1).Name = "FormulaCommand"
    args1(1).Value = 0
    args1(2).Name = "SkipEmptyCells"
    args1(2).Value = false
    args1(3).Name = "Transpose"
    args1(3).Value = false
    args1(4).Name = "AsLink"
    args1(4).Value = false
    args1(5).Name = "MoveMode"
    args1(5).Value = 0
    dispatcher.executeDispatch(document, ".uno:InsertContents", "", 0, args1())
End Sub

Sub InsertWithMoveRight
    ' ---------------------------------------------------------
    ' define variables
    Dim document   as object
    Dim dispatcher as object
    ' ---------------------------------------------------------
    ' get access to the document
    document   = ThisComponent.CurrentController.Frame
    dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
    ' ---------------------------------------------------------
    ' Paste contents with "Move Right" option
    Dim args1(5) as New com.sun.star.beans.PropertyValue
    args1(0).Name = "Flags"
    args1(0).Value = "A"
    args1(1).Name = "FormulaCommand"
    args1(1).Value = 0
    args1(2).Name = "SkipEmptyCells"
    args1(2).Value = false
    args1(3).Name = "Transpose"
    args1(3).Value = false
    args1(4).Name = "AsLink"
    args1(4).Value = false
    args1(5).Name = "MoveMode"
    args1(5).Value = 1
    dispatcher.executeDispatch(document, ".uno:InsertContents", "", 0, args1())
End Sub

将代码复制到用户库后,只需分配CopyAndCut给例如Alt+ CInsertWithMoveDown分配给例如Alt+VInsertWithMoveRight分配给例如Alt+ R(所有这些快捷方式默认都是空的)。

现在,您可以使用鼠标或键盘选择单元格或行,使用Alt+剪切它们C,移动到目标单元格,然后使用Alt+VAlt+粘贴它们R

答案2

要在 Open Office Calc 中移动一行:

  1. 选择要移动的行的 A 列单元格。
  2. 按 Shift-Space 键突出显示整行。
  3. 按住该ALT键。
  4. 将行(出现粗黑线)向上或向下拖动到所需位置。
  5. 如果您的工作看起来正确,请单击工具栏中的“保存”图标。
  6. 否则,ALT-Z撤消。

如果您想覆盖并销毁目标位置,请不要按住 ALT 键。只需单击突出显示的行并拖动到新位置即可。目标位置的数据将被销毁并替换为正在移动的行的数据。

相关内容