Morning,
I'm trying to record a value from a cell (4,5)
As I've created macro buttons that increase and decrease the value, the overall plan is to have a limit on those buttons too, however i want to create a record Button for the time being, and try figure out the later myself.
Script so far;
Sub Higher()
Cells(4, 5).Value = Cells(4, 5).Value + 1
End Sub
Sub Lower()
Cells(4, 5).Value = Cells(4, 5).Value - 1
End Sub
Any help on how to do record the value on cell 4,5 and input them into a table on cells (14,5)?
I'm trying to record a value from a cell (4,5)
As I've created macro buttons that increase and decrease the value, the overall plan is to have a limit on those buttons too, however i want to create a record Button for the time being, and try figure out the later myself.
Script so far;
Sub Higher()
Cells(4, 5).Value = Cells(4, 5).Value + 1
End Sub
Sub Lower()
Cells(4, 5).Value = Cells(4, 5).Value - 1
End Sub
Any help on how to do record the value on cell 4,5 and input them into a table on cells (14,5)?