在我們使用excel單元格進行查看數據的時候,有時候看著看著經常會不知道當前所選取的單元格是哪一個,針對這個問題我們可以通過開啟excel中的閱讀模式,開啟后點擊一個單元格就會變成十字的效果圖,如圖:
office Excel設置方法:
1、打開excel,然后按下ALT+F11,會出現(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設置方法:
1、首先我們進入“視圖”界面;
2、在視圖界面,找到“閱讀模式”,點擊即可開啟閱讀模式,如圖:
以上便是excel點擊單元格出現(xiàn)十字的設置方法,有需要的用戶快去試試吧~
相關文章:
excel按顏色排序怎么排?excel按顏色排序教程
excel不能排序怎么辦?Excel排序功能出現(xiàn)故障的解決方法