Search results

  1. J

    Drop Down Menu to Select Linked Form

    They are only in 1 table but each year is in seperate form. Doesnt sound like a flaw to me.
  2. J

    Drop Down Menu to Select Linked Form

    I would use a combo box with a drop down to select each form. Forms and table are already designed. All set to go I just need to add one combo box or list box to open each year.
  3. J

    Drop Down Menu to Select Linked Form

    I typically have buttons and a macro set up which will link to the original form by primary key. Anyone built it with drop down menu? For explanation when on Training Records Form for ID: 007 the admin can then open each year by a button for only ID: 007.
  4. J

    VBA Combo Box

    I found the solution after many hours if you can believe it. It was the property setting in the cmombo box which needed to be changed from 3 to 4. Thanks to arnelgp and Gizmo for the posts.
  5. J

    VBA Combo Box

    I tried it but it didnt work. Gave me Run-time error '94' Invalid use of null
  6. J

    VBA Combo Box

    Thanks so much for response. Ill give it a try in the morning - it may work. I love this forum - everyone is so helpful.!
  7. J

    VBA Combo Box

    Ive tried everything. It might have something to do with it being a date format xx/xx/xxxx but not sure how to handle it. I know it has the correct columns.
  8. J

    VBA Combo Box

    Any ideas? Ive been struggling with this as it looks like there may be a simple solution?
  9. J

    VBA Combo Box

    Yes, Column 0 is accounted for. I have the right corresponding columns. It is column 4 for a date x/xx/xxxx which is giving me a problem and I dont know why.
  10. J

    VBA Combo Box

    Im having a problem calling up the 4th column from a combo box to auto populate the field. Any restrictions, it is a date field as I can get text into the box? Here is the code added to the event on change of the SQL combo box: Private Sub Combo106_Change() Me.FName.Value =...
  11. J

    Query

    i figured it out anyways. thanks
  12. J

    Query

    sorry that was just an example. the table is more complex. thanks
  13. J

    Query

    Sample A: # Name Start Date Code 101 John 12/1/2012 HU 101 John 1/1/2014 BC 101 John 6/6/2016 EE Expected Result B 101 John 6/6/2016 EE
  14. J

    Query

    I have a query with multiple dates for the same person and ID # so it shows up several times. I have to filter by the most recent date. Tried the max and last but multiple are still showing up. Any suggestions. Thanks
  15. J

    Auto Import - Strip Out Certain Records.

    I can do the import part. I'm just confused as to if the end user is uploading it. It would have to be named a certain way in order for it be imported. Then once imported run a query to strip out the last two characters. Then create a second query with the join and leave off the records from the...
  16. J

    Auto Import - Strip Out Certain Records.

    I need to get through step 1 first. I would have to have an end user import the table. I suppose I would have to have them rename it? Then strip out the last (2) characters. I might be able to figure it out past that.
  17. J

    Auto Import - Strip Out Certain Records.

    When running query only have results which were not in the imported table. Not delete any records from the main table.
  18. J

    Auto Import - Strip Out Certain Records.

    Does anyone know a good foundation for the following?: Allow end user to import a spreadsheet with one column as a table into database Run process from a button to do the following: Strip the last two numbers in the column. The remaining characters in the column link to the main table. Take...
  19. J

    Multi Select Combo Box Query to Export

    No problem. It just seems like there must be a way to transferspreadsheet.
  20. J

    Multi Select Combo Box Query to Export

    i changed both . i am using 2010
Back
Top Bottom