Search results

  1. F

    Question Push Button to increment, will add one to category

    I think I went down the wrong rabbit hole in my original question. I'm happy to have the number increment in .25 jumps. It doesn't have to be an actual TIME measurement. This is just to record how much time the user spent on resolving an issue. The text box is labeled "Time Spent" so it should...
  2. F

    Question Push Button to increment, will add one to category

    Sorry, that doesn't work either. I understand what you mean about the datatype. I've tried setting the text box to fixed or standard, with 2 decimal places, but it doesn't register any increments. I reset the field size in the table for this field to double. That allows the code to work, but...
  3. F

    Question Push Button to increment, will add one to category

    boblarson, I have same request, only need the time to increment in .25 hours. The code works great for 1 hour increments, but ignores any decimal. I modified your code Me.textBox83.Value = Nz(Me.textBox83.Value,0) + 1 to Me.textBox83.Value = Nz(Me.textBox83.Value,0) + 0.25 Thanks for any...
Back
Top Bottom