Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]() I do alot of cut and pasting. Is there a code that will change the color of a cell if I right click to copy it, so I can track what I have worked on? Thanks, Tawnee -- tawnee jamison ------------------------------------------------------------------------ tawnee jamison's Profile: http://www.excelforum.com/member.php...o&userid=16137 View this thread: http://www.excelforum.com/showthread...hreadid=346063 |
#2
![]() |
|||
|
|||
![]()
Tawnee
Can be done, but you'll soon end up not knowing which was which. Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, _ Cancel As Boolean) If Target.Cells.Count 1 Then Exit Sub If Intersect(Target, Me.Range("A1:A10")) Is Nothing Then Exit Sub 'adjust the Range to your needs On Error GoTo CleanUp Application.EnableEvents = False Target.Interior.ColorIndex = 3 CleanUp: Application.EnableEvents = True End Sub Gord Dibben Excel MVP On Wed, 16 Feb 2005 13:30:06 -0600, tawnee jamison wrote: I do alot of cut and pasting. Is there a code that will change the color of a cell if I right click to copy it, so I can track what I have worked on? Thanks, Tawnee |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
notification by email by cell format change | Excel Worksheet Functions | |||
Change cell back color on click | Excel Discussion (Misc queries) | |||
Show Blank is cell value=0 but count as a zero in sum. How to format this cell ? | Excel Discussion (Misc queries) | |||
Show Blank is cell value=0 but count as a zero in sum. How to format this cell ? | Excel Worksheet Functions | |||
GET.CELL | Excel Worksheet Functions |