Câu trả lời:
Tôi không nghĩ Excel có thể tự làm điều này, nhưng tôi đã tìm thấy macro này
Sub FlipRows()
    Dim vTop As Variant
    Dim vEnd As Variant
    Dim iStart As Integer
    Dim iEnd As Integer
        Application.ScreenUpdating = False
        iStart = 1
        iEnd = Selection.Rows.Count
        Do While iStart < iEnd
            vTop = Selection.Rows(iStart)
            vEnd = Selection.Rows(iEnd)
            Selection.Rows(iEnd) = vTop
            Selection.Rows(iStart) = vEnd
            iStart = iStart + 1
            iEnd = iEnd - 1
        Loop
        Application.ScreenUpdating = True
End Sub
đây
If you do want to do it with "clicks" only, then you need VBA, and this question is better asked on Stack Overflow
Bạn có thể làm điều này với một công thức mảng (tức là không có VBA)
Xem Pearson's đảo ngược thứ tự của một danh sách
Nếu dữ liệu của bạn ở A1: C3 thì
=OFFSET(A$1:A$3,MAX(ROW($D$1:$D$3))-ROW(),0)