Recent content by asatyss

  1. A

    Code Help Needed - VBA

    That worked, I knew it was something liek that, I just couldn't figure it out. Thanks for your help!
  2. A

    nubie question using Left() and Right()

    Try this: mymonth = Mid(last,InStr(1,last,"/")+1,InStr(4,last,"/")-InStr(1,last,"/")-1)
  3. A

    nubie question using Left() and Right()

    I would use the mid function. In this case, it would be: mymonth = mid(last,3,2) Or, you could use Bob's method.
  4. A

    Code Help Needed - VBA

    Thanks, the error occurs on the following line: recordset.Open SQL, CurrentProject.Connection The error is "Object variable or With Block variable not set"
  5. A

    Code Help Needed - VBA

    I am trying to take a set of data that is a series of consecutive dates in one field and another field that has a number of hours charged for that day. I want to take that set of data for the project and apply a bell curve idea to it where we say that 90% of the project was completed between...
Back
Top Bottom