vba code

subfuntres

New Member
Joined
Sep 27, 2018
Messages
14
I have a depth sensor with an output from 0-60
I would like to add a value of 1 to another cell each time the value exceeds 5, but only once.
when the value falls below 5 the cell does not change value and waits for the value to increase above the 5 threshold.
I have tried a vba code which adds a value when increased above 5 but also adds for every other value above 5 and when it falls below 5 it reverts back to previous number.
Hope I have explained this properly.

Any advice please
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Not sure I have got it. Can you show a manual example of what you want to happen.
 
Upvote 0
try this code , you haven't said where you want the inputs and outputs so I assumed A1 and B1
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If lasttime = "" Then lasttime = 1


thistime = Cells(1, 1)
If thistime > 5 And lasttime <= 5 Then
 Application.EnableEvents = False
 Cells(1, 2) = Cells(1, 2) + 1
 Application.EnableEvents = True
End If
lasttime = thistime




End Sub
 
Upvote 0
Hi Many thanks for answers.
Tried your vba code.
Th problem is as follows
I entered a value above 5 in cell A1 and B1 increases by one.
But as the value of a1 can increase up to fiflty evertime it changes it changes B1
I would like to value to change only once within that range of 5-50 and then change again when it falls below 5 and then increasea again above 5
 
Upvote 0
Hi Many thanks for answers.
Tried your vba code.
Th problem is as follows
I entered a value above 5 in cell A1 and B1 increases by one.
But as the value of a1 can increase up to fiflty evertime it changes it changes B1
I would like to value to change only once within that range of 5-50 and then change again when it falls below 5 and then increasea again above 5

t would help if you wrote a example step by step with the expected output at each stage
 
Upvote 0
Hello subfuntres :)
Data is from a1 to a20 and column b has the required output
1
2
71
2
531
45
20
3
2
1
1
561
4
0
1
3
2
421
2
201

<tbody>
</tbody>
Code:
Sub Macro1()

Dim i As Integer, j As Integer
j = 0


For i = 1 To Cells(Rows.Count, 1).End(xlUp).Row


If Cells(i, 1).Value > 5 Then
j = j + 1
End If


If Cells(i, 1).Value < 5 Then
j = 0
End If


If j = 1 Then
Cells(i, 2).Value = j
End If

Next i


End Sub
(y)
 
Upvote 0
I forgot to tell you to delare the variable "lasttime" as a global variable in a standard module
Code:
Global lasttime

This means that it is persistent between changes on the workhseet change event.
Sorry
 
Last edited:
Upvote 0
Hi Again,

This is what I am looking for:

Cell a1 = 200
Cell a2 has input from a sensor ranging from 0-50
Each time a2 equals 5 or more then one is added to a1
But I need it only triggered between 5 and 50 for each event
The input of 5-50 represents depth of a submarine and each time it passes 5 mts it counts one more dive.
When the sub surfaces above 5 mts and then dives again below 5 mts it again counts one within the range of 0-50 mts

It is used to count the number of dives per day
 
Upvote 0
Hello again :)
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("a2")) Is Nothing Then

Dim j As Integer
j = 0
Set Target = Range("a2")
If Target.Value >= 5 Then
j = j + 1
End If

If Target.Value < 5 Then
j = 0
End If

If j = 1 Then
Range("a1").Value = Range("a1").Value + j
End If

End If
End Sub
(y)
 
Last edited:
Upvote 0
Hello again,

Many thanks

Ran your code and yes it triggers when value reach above 5. But also triggers on any other value above 5.
It should only trigger once per cycle of 0-50 input
 
Upvote 0

Forum statistics

Threads
1,215,569
Messages
6,125,600
Members
449,238
Latest member
wcbyers

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