I have a very simple command button that adds 1 to a cell like a tally.
The problem I have is that lets say I see 2 white blood cells. I want to double click the command button, but it only lets me click the command button at about one click per second. I was wondering if anyone knew a way so that there is no lag in computation. Running a dual core i5 with 8 gb of ram if that helps. Thank you everyone in advance!
Code:
Dim whiteBloodCell As Integer
whiteBloodCell = Range("E10").Value + 1
Range("E10").Select
ActiveCell.FormulaR1C1 = whiteBloodCell
The problem I have is that lets say I see 2 white blood cells. I want to double click the command button, but it only lets me click the command button at about one click per second. I was wondering if anyone knew a way so that there is no lag in computation. Running a dual core i5 with 8 gb of ram if that helps. Thank you everyone in advance!