excel highlight row and column cell

2007-06-30 6:02 pm
在excel 畫面中,當active cell在中間位置時,有沒有方法highlight 橫行和直行的cell。 因為我excel file很多data, 又要睇同一橫行和直行中間的資料。每次用尺或手指指。我想要十字highlight直和橫的內容。

回答 (3)

2007-07-02 6:48 am
✔ 最佳答案
你所要求的動作是要用VBA來完成的,而Microsoft 其中一位MVP (Most Valuable Professionals, 最有價值專家) 已製作了一個Excel 的add-in program 叫Selection Highlighter,相信是你想要的功能,你可以參考下述網址,按指示下載便可以。
2007-07-05 10:42 pm

在 sheet1 貼上 下面的巨集:
Dim rran As Range
Dim cran As Range
Dim aran As Range

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
r = ActiveCell.Row
c = ActiveCell.Column

Set aran = Range("a1:z1000")
aran.Interior.ColorIndex = xlNone

Set rran = Rows(r)

With rran.Interior
.ColorIndex = 36
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With

Set cran = Columns(c)

With cran.Interior
.ColorIndex = 35
.PatternColorIndex = xlAutomatic
End With

End Sub

若 a1:z1000 未能 cover 你 的 data, 可修改.

2007-06-30 6:13 pm
只要按著Ctrl 便可以了,步驟如下:
1. 像平時一樣highlight你想要既位置eg 一直行
2. 然後按著Ctrl
3. 再highlight你想要的橫行 (highlight時,要一直按著Ctrl)
4. 只要按著Ctrl,你便可以一次highlight很多不同的area了


收錄日期: 2021-04-13 14:17:08
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070630000051KK00934

檢視 Wayback Machine 備份