Make the code run only when shape is selected not after every 1 second.

ashni

New Member
Joined
Jun 13, 2016
Messages
32
this code is written to update the shape of the color whenever i drag n drop it according to its position. it is called once in workbook_open() event
But it is running all the time from opening the workbook till closing it.
Is there any method to make it run only when shape is selected.


Code:
Sub UpdateColor()
Dim ShapeXValue As Double
Dim datetRunTme As Date
Const TimeInterval As String = "00:00:01"


 'create error if selection does not involve a shape
On Error GoTo NoShapeSelected
 'amend colour based on selection.left
ShapeXValue = Selection.Left
Dim colour As Long
Select Case ShapeXValue
    Case Is < Range("G4", "G4").Left: colour = RGB(255, 128, 0)
    Case Is < Range("N4", "N4").Left: colour = RGB(0, 153, 0)
    Case Else: colour = RGB(219, 38, 10)
End Select


Selection.ShapeRange.Fill.ForeColor.RGB = colour


NoShapeSelected:
 'configure routine to run again
datetRunTme = Now + TimeValue(TimeInterval)
Application.OnTime earliesttime:=datetRunTme, procedure:="UpdateColor", schedule:=True


End Sub
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,215,200
Messages
6,123,611
Members
449,109
Latest member
Sebas8956

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top