excel表格怎么平移列數(shù)據(jù)
在excel表格中,需要對整列數(shù)據(jù)進行移動時,應該怎么設置呢?對于平時不常用Excel表格的朋友或許有點難度,下面學習啦給大家分享Excel表格移動列數(shù)據(jù)的方法,歡迎大家來到學習啦學習。
Excel表格移動列數(shù)據(jù)的方法
單擊菜單欄--視圖--宏--查看宏。
彈出宏的界面,輸入宏的名稱,這里為了便于記憶,我們命名為向左移動一列,然后點擊創(chuàng)建按鈕。
在新出現(xiàn)的界面中,輸入代碼,也就是程序語言,我已經(jīng)寫好了,大家直接復制即可。
Application.ScreenUpdating = False
x = Selection.Column
If x >= 1 Then
Columns(x).Cut
Columns(x - 1).Insert
Application.ScreenUpdating = True
End If
退出編輯狀態(tài),選中單元格或者整列,執(zhí)行宏即可。下面,我把向右移動一列的代碼也給大家。
Application.ScreenUpdating = False
x = Selection.Column
If x < 256 Then
Columns(x).Cut
Columns(x + 2).Insert
End If
Application.ScreenUpdating = True
End Sub
猜你感興趣:
excel表格怎么平移列數(shù)據(jù)
下一篇:excel表格忘記密碼怎么破解