問題是當我用某些顏色突出顯示行的原始顏色消失時,所以我嘗試了此代碼,並且再次刪除了行的原始格式和顏色選中單元格時突出顯示整行而不丟失原信號行的原始格式?
這是http://www.mcgimpsey.com/excel/highlightrow.html
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Const cnNUMCOLS As Long = 256
Const cnHIGHLIGHTCOLOR As Long = 36 'default lt. yellow
Static rOld As Range
Static nColorIndices(1 To cnNUMCOLS) As Long
Dim i As Long
If Not rOld Is Nothing Then 'Restore color indices
With rOld.Cells
If .Row = ActiveCell.Row Then Exit Sub 'same row, don't restore
For i = 1 To cnNUMCOLS
.Item(i).Interior.ColorIndex = nColorIndices(i)
Next i
End With
End If
Set rOld = Cells(ActiveCell.Row, 1).Resize(1, cnNUMCOLS)
With rOld
For i = 1 To cnNUMCOLS
nColorIndices(i) = .Item(i).Interior.ColorIndex
Next i
.Interior.ColorIndex = cnHIGHLIGHTCOLOR
End With
End Sub
那麼,我該怎麼處理這個問題呢?如何保留範圍的歷史顏色,以便在取消選擇該行時正確恢復?
我沒有看到這個代碼的問題 - 它對我來說工作正常。雖然我現在使用的是2003年,但目前還沒有進入2010年。你有沒有其他可能干擾這個的代碼?這不是很長,你是否已經通過它來確保它按照你的想法行事? – mkingston
thnks爲您的重播,但代碼工程與excel 2003 gr8,但與Excel 2010失敗,所以我該怎麼辦? –
好吧,在2007年嘗試過,工作正常,但它留下了亮點,只要宏停止(通過在VBE中使用stop/setback做到這一點),但事後再次正常工作 - 也許這會指出你在右邊方向。您是否在乾淨的工作簿上嘗試過代碼? – Jook