
office Excel設置方法:
1、打開excel,然后按下ALT+F11,會出現Microsoft Visual Basic界面;
2、在彈出的創建中鍵入下面代碼:
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,直到出現滿意的顏色。以下是截圖:

WPS Excel設置方法:
1、首先我們進入“視圖”界面;
2、在視圖界面,找到“閱讀模式”,點擊即可開啟閱讀模式,如圖:

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