ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Can a cell be turned on or off? (https://www.excelbanter.com/excel-worksheet-functions/258352-can-cell-turned-off.html)

painter50

Can a cell be turned on or off?
 
A1=B1*C1+D1
A2=B2*C2+D2
A3=B3*C3+D3
A4=B4*B4+B4

I would like to be able the have the total in any one of the A cells to add
up only if the cell is click on. In other words, can a cell be turned off or
on as needed?

--
Joe

Don Guillett[_2_]

Can a cell be turned on or off?
 
Right click sheet tabview codeinsert this

Private Sub Worksheet_BeforeDoubleClick _
(ByVal Target As Range, Cancel As Boolean)
If Target.Column < 1 Then Exit Sub
'B1*C1+D1
tr = Target.Row
Target.Value = Cells(tr, 2) * _
(Cells(tr, 3) + Cells(tr, 4))
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"painter50" wrote in message
...
A1=B1*C1+D1
A2=B2*C2+D2
A3=B3*C3+D3
A4=B4*B4+B4

I would like to be able the have the total in any one of the A cells to
add
up only if the cell is click on. In other words, can a cell be turned off
or
on as needed?

--
Joe




All times are GMT +1. The time now is 11:06 PM.

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