
office Excel設(shè)置方法:
1、打開(kāi)excel,然后按下ALT+F11,會(huì)出現(xiàn)Microsoft Visual Basic界面;
2、在彈出的創(chuàng)建中鍵入下面代碼:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.EntireColumn.Address = Target.Address Then
Cells.Interior.ColorIndex = xlNone
Exit Sub
End If
If Target.EntireRow.Address = Target.Address Then
Cells.Interior.ColorIndex = xlNone
Exit Sub
End If
Cells.Interior.ColorIndex = xlNone
Rows(Selection.Row & ":" & Selection.Row + Selection.Rows.Count - 1).Interior.ColorIndex = 10
Columns(Selection.Column).Resize(, Selection.Columns.Count).Interior.ColorIndex = 10
End Sub
大家可以改ColorIndex,直到出現(xiàn)滿意的顏色。以下是截圖:

WPS Excel設(shè)置方法:
1、首先我們進(jìn)入“視圖”界面;
2、在視圖界面,找到“閱讀模式”,點(diǎn)擊即可開(kāi)啟閱讀模式,如圖:

以上便是excel點(diǎn)擊單元格出現(xiàn)十字的設(shè)置方法,有需要的用戶快去試試吧~
相關(guān)文章:
excel按顏色排序怎么排?excel按顏色排序教程
excel不能排序怎么辦?Excel排序功能出現(xiàn)故障的解決方法