Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: NRK
  • Order by date
  1. NRK

    Subform Refreshing problem

    Thanks for the input. I'd thought of that solution but was unsure how to implement. After more experimentation, it would seem that the filter is overriding the query. Currently, a value in the combo box Name_ID must be selected before the Subform can be populated. The subform's underlying...
  2. NRK

    pop up Calendar and subform

    Disregard last message. I actually fixed something for myself :)
  3. NRK

    pop up Calendar and subform

    adamroof - Not to overly demanding - may be too late - but I have one more issue. I am trying to use either (1) two calendars to fill two date fields or (2) one calendar to fill two date fields. No matter which way I code it, I keep getting an error stating that an object is required. It is...
  4. NRK

    pop up Calendar and subform

    Wonderful. That is exactly what I needed. Thanks much for the insight. You get a well-earned star!
  5. NRK

    pop up Calendar and subform

    adamroof - I am having the same issue as logopolis. Should I change every reference to "me.calendar" to your code recommendation [SubForm.SubFormNameHere.FieldOnSubForm = Format(Me.Calendar,"mm/dd/yyyy")]? Even after making your changes, I still get an error that says "You can't hide a control...
  6. NRK

    Table field based on range of values

    Kevin - That is exactly what I was looking for. Thanks much. I also appreciate the reminder about using "Min" and "Max" for my field names.
  7. NRK

    Table field based on range of values

    I have a field called MktCap which stores numbers (i.e. $250.00). What I would like is a way to associate the number with a text field next to it. To do this, I want Access to look at a table and determine if the value in MktCap(i.e. 250.00) falls in a range of numbers. Depending on the...
  8. NRK

    Copy multiple worksheets to one summary worksheet

    In case anyone stumbles across this post and needs a solution, I wanted to post my final version. It integrates my code with Acron's. Much thanks to Acron for his assistance. Sub CreateSummary() Dim oWS As Worksheet Dim Rng As Range Set Rng = Cells(Rows.Count...
  9. NRK

    Copy multiple worksheets to one summary worksheet

    Hadn't heard from Acron or any other Excel gurus lately. Thought I would check in to see if anyone had thoughts on how to address this problem. I believe that I am very close to the solution, but can't seem to overcome this (hopefully) last obstacle. Ben
  10. NRK

    Copy multiple worksheets to one summary worksheet

    In my efforts to continually tax your patience, I have a problem with the code. When I run it, nothing is copied from the Array of sheets (Sh1, Sh2) to the Summary. In addition, I get alternating errors - 400 or Run-Time Error '1004'. I tried copying your code verbatim, but still get the same...
  11. NRK

    Copy multiple worksheets to one summary worksheet

    acron, thanks for the follow-up. Even with some slight modification, the code you submitted did not work for me. Here is the code snippet: Range([A2], [I2].Offset([A2].CurrentRegion.Rows.Count - 1, 0)).Copy Destination:=[A65336].End(xlUp).Offset(1, 0) While it does ignore the first column, it...
  12. NRK

    Copy multiple worksheets to one summary worksheet

    Fantastic! This is both simple and elegant in its functionality. Thank you very much. If you feel like it, I do have a follow-up. After running the code, I noticed that I need to append the first row for each sheet (#1-7) and I need to ignore the first column (always A:A. I believe that I...
  13. NRK

    Copy multiple worksheets to one summary worksheet

    I have a spreadsheet that has 10 worksheets (tabs). Seven of these sheets are data repositories that are updated manually. One worksheet will be a summary page that will have all information for these 7 sheets (sans header). As a note, the first two sheets grab certain summary information...
  14. NRK

    Return file name of last modified file

    vb5prgrmr - Thanks for the code snippet. Unfortunately, I cannot seem to get it to work. I initially tried modifiying it to my needs, but when that didn't work, I just cut and pasted your code into my editor and tried running that. I keep getting a Run-Time Error '5' for the line: If...
  15. NRK

    Return file name of last modified file

    vb5prgrmr - Thanks so much for the lead. Your code idea helped me generate ideas. Although I have gotten closer to a solution, I am still not there. Please review the code below. Code snippet: Sub LastFileSaved() Dim strLastMod As String With Application.FileSearch .LookIn =...
  16. NRK

    Return file name of last modified file

    I am creating an Excel-based order entry system. What I need to create is a method that will look up the last 4 characters (file ID number) of the last file modified. This will be displayed on the form and will allow the user to know what ID was used last. First, let me say that I think this...
  17. NRK

    the cookie question continued.

    silverswim - Did you ever resolve this issue? I am at the same point in my design and would appreciate any advice you have. Thanks.
  18. NRK

    How to generate unique IDs?

    Fantastic - thanks so much for your help! It makes much sense and I appreciate your quick response.
  19. NRK

    How to generate unique IDs?

    I am very new to ColdFusion and am trying to learn about its bounds. This is my first foray into database design for a web-based interface so I am unsure about the feasibility of this question. I created an Access database that initially used Access as the front end. One of the functions...
  20. NRK

    Insert dividers in form for report purposes

    Jim - thanks so much for your input and time. Hopefully, this will have a positive resolution.

Part and Inventory Search

Back
Top