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 Wanet Telecoms Ltd 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: sna1maa14
  • Content: Threads
  • Order by date
  1. sna1maa14

    find the avg for the last 3 values for each record using a query?

    Here is my situation. I have to assign an avg to each player based of their last three games played. I have a table with scores for each game by person and the month played. I need to take their last 3 scores and avg them for each player. So my question is how do I get player 3 to only avg his...
  2. sna1maa14

    MkDir runtime Error 76. Path Not Found

    I'm trying to create a new folder if it does not exsit but I keep getting a runtime Error 76, Path Not Found. It only happens if I specify multiple folders ex. Mkdir "D:\Folder1\Folder2". If I put Mkdir "D:\Folder1" it works. What am I doing wrong. Thanks Sna1maa
  3. sna1maa14

    Multi Select List box to fill array and then run sql from that array

    I have a Multi-select (simple) list box with customer account Names (unbound) and IDs (bound). I want to be able to select the customers I need and then print their reports. So what I need to do is get the list of customers, loop through their Id's, run a sql select based off the first name and...
  4. sna1maa14

    Error When trying to transfer records to excel.

    I keep getting this error 2147217900 (80040e14) Invalid Sql statement; Expected Delete,Insert,Procedure,Select or Update when trying to transfer records to Excel workbook. Here’s my code run from a command button. Dim strMonth As String Dim rst As ADODB.Recordset Dim xlApp As Excel.Application...
  5. sna1maa14

    need help finding missing dates from group of records!!!

    What I want to do is find out when a customer hasn't paid his bill for the month and say what month/months are unpaid. So say I have a customer with billing info for 3 years. I have customer Id, Name, Bill amount, amount paid and the month/year it was paid on. Now say customer 1 paid every month...
  6. sna1maa14

    Help with varaible in sql select statment

    I want to create a table that will use todays date in the format of "tblmmm_yy" as the table name here is what i have. Im sure this is an easy fix but i just can't seem to get it. Dim strTablename As String strTablename = Format(Date, "mmm_yy") DoCmd.SetWarnings False DoCmd.RunSQL "SELECT...
  7. sna1maa14

    Email all records = to a rec from other table and rpt 4 nxt rec

    I have a query that selects all Contracts that are not complete. I need to email the Area manager with these contracts for his Area only. I’m able to send an email to each Area but it contains all the contracts not just his/her area. How do I send all records that are equal to one area only and...
  8. sna1maa14

    Capture Mouse Click

    I have found code that will capture a mouse click in the form I use but what if I want to be able to capture any mouse click outside of the form like in another app or on the desktop? This way I can set the focus back to the form. Basicly i want to force them to click OK before going on to...

Part and Inventory Search

Back
Top