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