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: chip12
  • Order by date
  1. chip12

    Exporting Access To Excel

    I have a datasheet From Access that has approx 600,000 rows. I need to export that to at least 10 woorksheets in excel. Can Anyone supply code that will do that.I only use sql for querys and I not familiar where in Access to place programming code.Please supply that as well if possible. thanks...
  2. chip12

    Exporting ACCESS To Excel

    I ran a query that came back with 145,000 rows of information. I need to export that to excel. However Excel will only except 65,536 rows. I need some sort of workaround on this.
  3. chip12

    consecutive months

    I need to select all merchants via the merchant-id that have process for 12 consecutive months. Processing means that we have received payments via the merchant 's credit card. The processing information is held in the processing date column and is reported in days not months. I am not sure...
  4. chip12

    Days betweeen dates

    Lespaul..Thanks fo responing, i was out yesterday.. I will rerun your initial answer and giv you a baetter senario of what is going on later today.. thanks for hanging with me
  5. chip12

    Days betweeen dates

    PH I ran this part of the code and it ran fine as long as i added the group by clause, Howver when I aded this AS A INNER JOIN qry_CNT_Contracts AS B dbo_CNT_Contracts.MerchantID = B.MerchantID AND MerchantID, dbo_CNT_Contracts.FirstFundingDate >= B.FirstFundingDate GROUP BY...
  6. chip12

    Days betweeen dates

    Thanks PH I will try that today
  7. chip12

    Days betweeen dates

    You are correct! that is exactly the average interval in days between the the first and 2nd contract purchase, the numbers of days between the 2nd and 3rd contract purchase. I need to run that query against the entire 20,000 records merchant table. I have multiple mercants wih multiple...
  8. chip12

    Days betweeen dates

    I don't understand your response. I can run a query using this AVG(DateDiff("'d"([date1],[date2}) But it only will give me the average of each row. I need the average of the number of days between each new contract broken into intervals between the first and second contract, the 2nd and third...
  9. chip12

    Days betweeen dates

    Thnaks .. I'll be more clear. I need to to get the average days between dates at selected intervals. I have customers who have open new contracts and paid them off with out defaulting at different dates. This particular data set has several different open and paid contracts. I used DateDiff...
  10. chip12

    Days betweeen dates

    I used Datediff for the answer. It gave me the numbers of days between the purchase and the payoff. However.I have customers who have several purchases over time. I need to find out the average time between purchases
  11. chip12

    Days betweeen dates

    Can anyone tell me how to convert two different dates to a number format so that I can subtract them in ACCESS?
  12. chip12

    Days betweeen dates

    I have code that gives me that gives me the customer name,the purchase date, the date the customer paid out the contract completly but never defaulted before paying out. I am trying to find out the average numers of days between the 1st and 2nd contract purchase, 2nd and 3rd purchase...
  13. chip12

    Access SQl Query

    Thank you very much. it worked
  14. chip12

    Access SQl Query

    The code is Select avg(turn) from (tablename) group by funding_date. The averages are base on the individual day. I need the averages to be based on a month by month basis. Thanks again
  15. chip12

    Access SQl Query

    I need to group my data by month. The query I run gives the average of a select column of numbers but groups by days instead of months Below is my results. I need to group the averages by month instead of days. My code is simply not working Thanks in advance 6.762790698 1/2/2004 6.708717949...

Part and Inventory Search

Back
Top