ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   CLICK TO enter value (https://www.excelbanter.com/excel-worksheet-functions/121548-click-enter-value.html)

danw

CLICK TO enter value
 
I have a spreadsheet that tracks tasks done. Currently, they have to enter a
"1" into the field chosen. Is there a way that they could just click in the
space and a 1 would be entered?

Nick Hodge

CLICK TO enter value
 
Dan

You could use a Worksheet_SelectionChange() event

right-click on the sheet tab and select 'View code' and paste the code
below. It will add a 1 to ant cell clicked in column A or take it away if
one already exists

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Application.Intersect(Target, Columns("A:A")) Is Nothing Then
If Target.Value = "" Then
Target.Value = 1
Else
Target.Value = ""
End If
End If
End Sub

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
DTHIS
www.nickhodge.co.uk


"DanW" wrote in message
...
I have a spreadsheet that tracks tasks done. Currently, they have to enter
a
"1" into the field chosen. Is there a way that they could just click in
the
space and a 1 would be entered?




All times are GMT +1. The time now is 03:32 PM.

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