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 TouchToneTommy 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: kimsMTC
  • Content: Threads
  • Order by date
  1. kimsMTC

    Excel 2007 import

    I have 2 separate Excel 2007 worksheets that need imported into 1 table in Access 2007. Since I can only import 1 worksheet/import, how can I get the 2nd worksheet into the same table, matching up values from existing records? In other words, an append will not work. I need to match records...
  2. kimsMTC

    Combo Box not displaying correctly

    I changed the SELECT statement on a combo box on my window, added a sort order by LastName and reversed the columns to be LastName, FirstName. Here's the problem. The combo box displays correctly in my mdb file. I send it to my client, they see it correctly in the mdb file as well...
  3. kimsMTC

    Can't print Access 2003 report

    I have an Access 2003 application that has a PRINT button. The clicked event code is: strReport = "Preview Timesheet" DoCmd.OpenReport strReport, acViewPreview DoCmd.PrintOut DoCmd.Close acReport, "Preview Timesheet", acSaveNo This works for me, but when my client...
  4. kimsMTC

    Tab triggering BeforeUpdate event

    I have a simple form with a sub-form. My form only allows additions. The sub-form displays the list of all previously added records. I have 2 buttons: "ADD TO PROJECT" and "CLOSE". There is only 1 field to enter the Project Name. My problem is stopping data from being entered without my...
  5. kimsMTC

    Access Tables Smart Tag

    In my database view, I am trying to attach a built-in Smart Tag. When I click on the ellipse button on the Smart Tag text box, the Smart Tag window pops up but there is only a Financial Symbol listed. I am finding nothing about the built-in tags in help except that they should already be...
  6. kimsMTC

    Nulls in Pivot Tables

    I have a feeder query, then a pivot query that uses the feeder query, then a Pivot Report that uses the pivot query as its source. My problem is that when the report displays the data, some of the sums are null values. Therefore, I cannot get calculations done because of the nulls. I have...
  7. kimsMTC

    Crosstab report

    I have a created a crosstab feeder query that joins my tables together, then created a cross table query that is used by a crosstab report. My problem is that my totals are incorrect and I cannot even figure out where the value being displayed is coming from. Please help! Feeder Query: SELECT...
  8. kimsMTC

    db.execute problem

    I'm using db.execute to insert a record into a table. However, if there is a duplicate record, how do I check it? I have the dbFailOnError, but I don't know how to check it. Here's my code: Set db = CurrentDb strSQL = "Insert into [Time] (EmployeeID...
  9. kimsMTC

    Database Connection fundamentals

    I am new to Access and am trying to understand the fundamentals of when to connect to a database. A lot of my confusion is because of my background in software development with much higher end languages. Here's my questions: 1. Since you create forms within an Access database, do you still...
  10. kimsMTC

    Subform protected

    I have a form that allows the user to enter information and click the ADD button. The ADD button adds the information to a specific table. I then requery a subform on the page to show the newly added record has been added to the list of previously added records. I need to be able to click...
  11. kimsMTC

    Crosstab Nested Query Parameter problem

    I had the same problem referenced in thread701-953137. I added the Parameters code to my crosstab query SQL code. I still get the same JET error message but this time it says "The Microsoft Jet Database engine does not recognize " as a valid field name or expression. I cannot determine where...
  12. kimsMTC

    Union query

    Can someone please tell me why I get an error message on this query that JobType is not included in the first query? SELECT Department.DepartmentName, Employee.EmployeeNumber, Employee.LastName, Employee.FirstName, 'Regular' AS JobType, Sum(Time.Hours) AS SumOfHours FROM Department INNER JOIN...
  13. kimsMTC

    Requery after Delete in continuous subform

    I have a form and subform with my subform being a continuous form. It lists timesheet records in a Tabular format. I have a command button that has the following code to delete the record that has focus in the Tabular form: Private Sub BtnDelete_Click() With Me.TimesheetRecords...
  14. kimsMTC

    Bypass in BeforeUpdate event

    I have a form and subform created. The form only allows the user to add a single time record to their timesheet at one time. After the ADD TO TIMESHEET button is clicked, the record is added to the subform (called TimesheetRecords) for the user to easily see what has been added. A Requery is...

Part and Inventory Search

Back
Top