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: *

  1. jmgibson

    Filtering Access Report using multiple Combo Boxes

    Hi....I have a Form that I've designed which includes 2 Drop Down Boxes and a Button that will generate an Access Report based on the criteria submitted in the drop downs. The purpose of the 2 Combo Boxes (cboDivAllOFFICES, cboCourse_wDiv) is to filter the Report by Division Name (this is a...
  2. jmgibson

    Filter Query Based on ComboBox Value and LIKE statement

    Hi....I'm scratching my head on what I thought would be an easy query. I have a table that has employee names and their specific department. For example. Mark Smith | Division 1 - Atlanta Joe Bob | Division 1 - Boston Henry B | Division 3 - New York What I would like to do is to have a...
  3. jmgibson

    Parameter Query: Return All Records if a Specific ID is entered

    Hi...I have a query that when executed, it asks the user for an ID (number). If the user enters a admin ID, the query will return ALL records, and if the user enters a non-admin ID, the query returns only those records tied to that ID entered. I'm not sure why this logic isn't working. Any...
  4. jmgibson

    Determine Number of Rows returned in a Query

    Hi, I suspect this is easy for many, but I can't figure out the necessary vba code to execute a requery and determine how many rows were returned in the query. Here's the basic gist of what I'm doing. Do I need to declare anything to use the RecordCount feature? Private Sub Form_Current()...
  5. jmgibson

    Determine Number of Rows returned in a Query

    Hi, I suspect this is easy for many, but I can't figure out the necessary vba code to execute a requery and determine how many rows were returned in the query. Here's the basic gist of what I'm doing. Do I need to declare anything to use the RecordCount feature? Private Sub Form_Current()...
  6. jmgibson

    Recordset: Findfirst is finding the wrong record

    Hi everyone, I've placed a combo box on a form and asked Access to Find a record based on the selection within the form. Since I leveraged the Access Wizard to do this when adding the combo box, it drops in the following code. Private Sub Combo31_AfterUpdate() ' Find the record that...
  7. jmgibson

    Problems with TabControls and SubForm

    Overall, I'm attempting to accomplish two functions related to the courses ; (1) assign specific courses to a specific job title (i.e. all project mgrs may be required to take basic 101, 102, 103); and (2) assign courses by employee (i.e. bob a project manager, must take Basic 101, 102. 103...
  8. jmgibson

    Problems with TabControls and SubForm

    Majp, Thanks for the suggestion. I've incorporated the line of code above in both change events, but it seemed to make the problem worse. After adding courses to two different roles, the data presented in the sub-form (based on the combo on the main page) seems random in what it presents. It...
  9. jmgibson

    Problems with TabControl/Subform

    Hi everyone. I'm in the process of creating a way where a user can go in and select (via combo box) a Job title and then assign that Job Title a educational course or courses. Since there are multiple categories of classes (Basics, Supervisory, etc), I created a tabcontrol on my Main Form, and...
  10. jmgibson

    Problems with TabControls and SubForm

    Hi everyone. I'm in the process of creating a way where a user can go in and select (via combo box) a Job title and then assign that Job Title a educational course or courses. Since there are multiple categories of classes (Basics, Supervisory, etc), I created a tabcontrol on my Main Form, and...
  11. jmgibson

    Capture Active Page Name of a TabControl

    Is there a way to capture the Active Tab Name on a Tab Control. My VB is rusty, but I want to do something like. varActiveTabName = me.TabControlName.Name Ultimately, I want to use the variable in a query so that when a Tab is Clicked, the query will re-run based on the new tab name. Select...
  12. jmgibson

    Is a subform my best option

    Hi everyone. I've been away from Access for a bit, some I'm trying to get back up to speed. Anyway, I'm trying to determine how best to handle the function I'm trying to develop. I'm inclined to go down the path of a form/subform implementation, but I figured I'd bounce it off the group...
  13. jmgibson

    Column Bar Chart - Null Values actually plot with Logarithmic Scale

    I'm plotting data in a time series (hour by hour) for every day of the year. I'm using a logarithmic scale to show the varying detail from a value of 10 to a value of 1 billion. In each hour, there are multiple data series. Since I need to show data for each hour in the data, my x-axis...
  14. jmgibson

    Lookup Function - Populating

    Pivot Tables may do the trick. I'm not sure I understand what the formula is doing in your second post. Can you ellaborate?
  15. jmgibson

    Lookup Function - Populating

    I recently posted a question about this and I think I was pointed in the right direction, but I can't seem to get it to work. Here's the question. I have a large quantity of transactional data and I need to eventually produce a graph that reflects the activity that occurred per hour. If the...
  16. jmgibson

    Excel - Insert Missing Records Sequence of events (hours)

    All, I have an extensive amount of data that includes two columns. Time and Amount ($). Each record in the table reflects a detailed transaction that occurs. Transactions can occur throughout a 24 hour period, however, they may not always occur each and every hour. What I'm trying to do is...
  17. jmgibson

    Logarithmic Scale - Suppress Error Messages when Negative/Zero Values

    I'm graphing data using a Logarithmic scale. I do have negative values, and I realize these aren't allows, and I'm okay with the fact that Excel just skips over them. But, I get prompted with an error message that tells me that negative/zero values aren't allowed. Is there anyway to suppress...
  18. jmgibson

    EXCEL: Logarithmic Scale - Negative Values

    I'm not sure I follow.....how would this appear as negative on the charts? I'm looking at account balances and I need to be able to reflect that an account is in negative territory? Perhaps I'm overlooking something simple. Thanks Skip!
  19. jmgibson

    EXCEL: Logarithmic Scale - Negative Values

    Hi, I'm trying to graphical represent two data series/sets on a graph in Excel (with a primary and secondary y axis). The Data covers a LARGE range of values, so a Logarithmic scale for both the primary and secondary axis works great. However, I have a few negative values (which as we know...
  20. jmgibson

    Web Survey - Map specific form fields to a generic table field

    Hi.....I've created an online survey tool that presents several questions at once on a page and allows the user to select a single answer for each question. Once submitted, the field values (q1, q2, q3, etc) are submitted to the next page (what I call the action page) as follows: Q1 = 100 Q2 =...

Part and Inventory Search

Back
Top