Search results

  1. K

    Sorry, I don't actually work here

    Get a badge engraved that says "Actually, I don't work here"? Yes, please, do this. And a video would be great!
  2. K

    Variable as a Variable?

    Ok The_Doc_Man, That seems to make sense to me. I can achieve the outcome I want, but I was hoping of a different way of doing it. And you post I think explained what I was looking for. I don't think what I was hoping for is possible, but I figured I'd take a hack at it. And thank you all for...
  3. K

    Search Code Query

    I understand, I didn't take it as being critical. And you have helped me out with many a problem. And I appreciate your help very much :)
  4. K

    Search Code Query

    It probably is, but I used it just as a generic "this is the input" variable. But thank you for pointing that out. I should have mentioned that.
  5. K

    Search Code Query

    You should be able to create a variable that concatenates a string containing the * and the text box input Dim Input As String Input = * & [txtRefSeach]
  6. K

    update a field

    I'm glad you worked it out :) I my self have spent many hours working on many of my own issues. Many many errors... haha
  7. K

    update a field

    So... You want 2 fields, with field2 relating to field1, and have it look like this? ------Table---------- --Field1---Field2----- --100* ---4500*----- --------------------- But the problem is you have it all imported into on field looking like this? ------Table----------...
  8. K

    Userform Textbox as String

    I would suggest adding code in the AfterUpdate or OnDirty Events. Use some code like... Private Sub Subform_AfterUpdate() Dim PathForLater As String PathForLater = TextBox End Sub Then you have a string variable in the VBA Code to pass along. And if they were to Update the [TextBox], it...
  9. K

    Variable as a Variable?

    hhmm... sorry if this is hard to understand what i am trying to say, it is also hard to figure out how to say... lol I have variables to represent ranges, e.g. [ProvostSch_1] is the first GPA range for the ProvostSch Scholarship students. [PresNewSch_1] is the first GPA range for the...
  10. K

    Variable as a Variable?

    I understand the array now, and I like that idea, but I forgot to mention that I need to fill an Access Form with this. Ya, I'm hoping this example will help (I was actually typing it up as you responded) This is what I need to fill ------------Scholarship #1------------------- - GPA...
  11. K

    Variable as a Variable?

    Um... I need to variablize a variable name... if that makes sense. e.g. use the variable [var] to equal [var1], then [var2], then [var3], etc. but I dont want to hard code the 1,2,3,etc. part I am hoping I can use a counter variable to define which variable to use. when [counter] = 1 then...
  12. K

    Variable as a Variable?

    I'm wondering if it is possible to set a Variable as a Variable. For example... A set of variables all starting with the same name that are appended with numbers. such as Var1, Var2, Var3, etc. I want to run a loop that goes through this list of variables by using a count, so that I do not...
  13. K

    refering to Query data in VBA

    ah, DLookup. thank you :) This forum has always helped out, you guys are great!!
  14. K

    refering to Query data in VBA

    Code: ScanID = Right(ScanID, 9) ScanID = Left(ScanID, 6) DoCmd.OpenQuery "ScanIDtoBoxNumber" DoCmd.OpenForm "Boxes" [Forms]![Boxes]![Boxes_Box Number] = ____________ I need "[Forms]![Boxes]![Boxes_Box Number]" to be assigned the value from a query. The query name is...
  15. K

    Table Import Error

    ok, so i just copied the excel data to a new blank excel sheet and it works now. My only guess is that access thought that there was something that I wasnt seeing, like off to the right. Thanks though. If it ever happens again, I like you idea.
  16. K

    Table Import Error

    I just hit a large bump in the road... I tried to import an Excel file (which I have done before with ease), but this time Im getting an Error. I believe that I formatted the Excel file properly to match the Access Table, but it brings up an error: Subscript out of range. (And I hope my...
  17. K

    Exporting a Report to MS Word

    Ah, that makes sense, thanks for the coding part :)
  18. K

    Exporting a Report to MS Word

    Ok, so my database is set up to print a report that is a contract from a customer in the database. I used to just print the report, but i would like to export them to MS Word and save them. I know how to export them, but it does not export the whole report, just the data part. Any ideas? Also...
  19. K

    Report Prints With Extra Blank Page at the End

    Ah, good idea, ill try that, thanks
  20. K

    Report Prints With Extra Blank Page at the End

    When I print a report, there is a extra blank page that follows. Any ideas on how to fix it? Or at least tell it how to only print the first page? I tried making the report shorter and less wide, thinking that it was just overflow of nothing onto another page, but I don't think that is it.
Top Bottom