ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Mr. Kabel, Can you help me with this? (https://www.excelbanter.com/excel-discussion-misc-queries/110784-re-mr-kabel-can-you-help-me.html)

kmwhitt

Mr. Kabel, Can you help me with this?
 
Can anyone help me re-write this so that it only works with doubleclick?

Thanks,

Kevin

"Bob Phillips" wrote:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
With Target
If .Value = "a" Then
.Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
.Offset(0, 1).Select
End With
End If
sub_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Lee and Rebecca" wrote in message
...
Going back to the question about making a cell show an X just by clicking

on
it. Can you walk me through the steps with programming the cell to do

this.
Came we talk thru reg. e-mail?

thanks.





Bernie Deitrick

Mr. Kabel, Can you help me with this?
 
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
With Target
If .Value = "a" Then
.Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
.Offset(0, 1).Select
End With
End If
sub_exit:
Application.EnableEvents = True

End Sub

HTH,
Bernie
MS Excel MVP


"kmwhitt" wrote in message
...
Can anyone help me re-write this so that it only works with doubleclick?

Thanks,

Kevin

"Bob Phillips" wrote:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
With Target
If .Value = "a" Then
.Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
.Offset(0, 1).Select
End With
End If
sub_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Lee and Rebecca" wrote in message
...
Going back to the question about making a cell show an X just by clicking

on
it. Can you walk me through the steps with programming the cell to do

this.
Came we talk thru reg. e-mail?

thanks.







kmwhitt

Mr. Kabel, Can you help me with this?
 
Thanks, Bernie!!!

"Bernie Deitrick" wrote:

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
With Target
If .Value = "a" Then
.Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
.Offset(0, 1).Select
End With
End If
sub_exit:
Application.EnableEvents = True

End Sub

HTH,
Bernie
MS Excel MVP


"kmwhitt" wrote in message
...
Can anyone help me re-write this so that it only works with doubleclick?

Thanks,

Kevin

"Bob Phillips" wrote:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
With Target
If .Value = "a" Then
.Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
.Offset(0, 1).Select
End With
End If
sub_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Lee and Rebecca" wrote in message
...
Going back to the question about making a cell show an X just by clicking
on
it. Can you walk me through the steps with programming the cell to do
this.
Came we talk thru reg. e-mail?

thanks.







Gord Dibben

Mr. Kabel, Can you help me with this?
 
Private Sub Worksheet_BeforeDoubleClick(ByVal Target _
As Range, Cancel As Boolean)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
With Target
If .Value = "a" Then
.Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
.Offset(0, 1).Select
End With
End If
sub_exit:
Application.EnableEvents = True
End Sub

Note: with the sheet module open select worksheet from the object dialog then
look at the options on procedure dialog.

You would find the doubleclick option


Gord Dibben MS Excel MVP

On Wed, 20 Sep 2006 07:56:01 -0700, kmwhitt
wrote:

Can anyone help me re-write this so that it only works with doubleclick?

Thanks,

Kevin

"Bob Phillips" wrote:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
With Target
If .Value = "a" Then
.Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
.Offset(0, 1).Select
End With
End If
sub_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Lee and Rebecca" wrote in message
...
Going back to the question about making a cell show an X just by clicking

on
it. Can you walk me through the steps with programming the cell to do

this.
Came we talk thru reg. e-mail?

thanks.







All times are GMT +1. The time now is 08:41 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com