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 Mike Lewis 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: mssbass
  • Order by date
  1. mssbass

    Percent to Total Calculation within Report

    I'm pretty new to access - I have a report that links to my query and the layout is simple: Service #Pkgs % to Total My query gives me the service type and number of packages that are associated with each service - NOW, how do I add on the column that shows for each service, what's the...
  2. mssbass

    using datediff on text field in query

    Oh yeah - how do I give the restraint as follows: >0 "It must be greater than 0
  3. mssbass

    using datediff on text field in query

    Excellent - Thank you sooooooooooo much(:
  4. mssbass

    using datediff on text field in query

    The expecteddeliverdate and actualdeliverdate are in the following format: 2005-10-06 23:59:00.000 However, these are text values - it won't subtract since they aren't a date value using the datediff function...
  5. mssbass

    using datediff on text field in query

    Is there a way for a query to recognize a text field as a date? My query: DateDiff("s","ExpectedDeliverDate","ActualDeliverDate") error: data type mismatch
  6. mssbass

    Calculating Time in Transit

    I am having issues with the Weekday and DateDiff function. Right now, my date fields are formatted as text. I can ignore actual delivery date at this time. All that counts in order to figure out expected time in transit is ShipDate and ExpectedDeliverDate You say this will return a 7 for...
  7. mssbass

    Calculating Time in Transit

    My data is as follows: ShipDate: 2005-04-01 00:00:00.000 OrigZipCode 054 DestZipCode 054 ExpectedDeliverDate 2005-04-04 23:59:59.000 ActualDeliverDate 2005-04-05 12:15:00.000 I need some major help. I need to figure out what type of product is being shipped based on ship date and...
  8. mssbass

    Running several SQL statements (delete queries) in module

    Private Sub deleteimport() Dim strDelete As String strDelete = "DELETE Service FROM [UPS COM]WHERE ([Service] Is Null Or [Service] Like 'Tot';)" DoCmd.RunSQL strDelete End Sub I cannot get this module to run - It says "syntax error in expression". If the Service column is null...
  9. mssbass

    Using file browser as input to file location?

    I am currently asking the user for the file path location using the following code: Private Sub OpenOrders_Click() Dim strWhere As String strWhere = InputBox("Enter path and file name") DoCmd.TransferSpreadsheet acImport, 8, "UPS COM Test", strWhere, True, "UPS COM Data!" End Sub Is there...
  10. mssbass

    Transferspreadsheet cannot find Excel tab with space between letters?

    I am trying to import an Excel worksheet; however, if the tab has a space in the word, it won't pull in. If I adjust the tab word, it will pull in: Private Sub OpenOrders_Click() DoCmd.TransferSpreadsheet acImport, 8, "UPS COM Test", "D:\Amy\ontime.xls", True, "UPS COM Data!" End Sub...
  11. mssbass

    Importing selective worksheets and files

    I am pretty new to VBA, in fact, I don't know it at all. I am creating a front-end database for the people I report to. I want them to be able to import a spreadsheet we receive annually with volume data. I want a form with a button (when clicked) allows the user to choose where the Excel...
  12. mssbass

    change to days, hours, minutes

    So, can you redo to assume txtAvgHXS is in minutes?
  13. mssbass

    Computing time difference

    I need the difference in time to show # of days, hours and minutes left over between the 2 dates??
  14. mssbass

    Setting up table with only Saturday dates

    How do I set up a table with the past 3 years and future 3 years of Saturday dates?
  15. mssbass

    Computing time difference

    I can't get this to work. Do I just replace the firstdate and seconddate with my table names? what else do I do to this statement? I'm assuming this goes into the "build" area of my select query?
  16. mssbass

    Computing time difference

    I need help with creating a query which produces how many minutes or days difference there is between dates formatted as follows: I need a query (no vba, etc.) 2003-10-07 10:30:00
  17. mssbass

    Locking tables/objects to slide to prevent moving

    Is there a way to "lock" the table to the slide? When trying to paste another table into the same slide, the previous table resizes itself to accomidate the new table and I don't want the old table to move at all.
  18. mssbass

    Text Cells within Table in Powerpoint are uneditable

    I cannot add any text to the inside cells within a table that was sent to me in a Powerpoint presentation. Any ideas?

Part and Inventory Search

Back
Top