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 strongm 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. SwordMonkey

    Inner Join property not found...

    Changed it to this: strQry = "select proj_id,pd_no,fy_cd,tgt_itd_costs FROM deltek.rpt_rev_sum " & _ "INNER JOIN BPRecs ON rpt_rev_sum.proj_id = BPRecs.BPNumber " & _ "WHERE fy_cd = '2003' AND pd_no = '" & period & "';""&quot...
  2. SwordMonkey

    Inner Join property not found...

    Dim stDocName As String stDocName = "rpt_rev_sum" Dim db As Database Dim dbf As QueryDef Dim records As DAO.Recordset Dim BPDef As TableDef Dim BPRecs As DAO.Recordset Dim period As Long Dim strQry As String Set db = CurrentDb()...
  3. SwordMonkey

    Problem running query with VBA

    OK, I'm a little stumped. Here's the code: Dim stDocName As String stDocName = "rpt_rev_sum" Dim db As Database Dim dbf As QueryDef Dim records As Recordset Dim startdt As Date Dim enddt As Date Set db = CurrentDb() Set dbf =...
  4. SwordMonkey

    Convert range of text to number in VBA?

    Thanks for the reply TLady. Unfortunately that way only worked until I repulled the data. But your comments made me come up with a solution that I of course couldn't think of until now. Just did a CInt() on the numbers as they came over.
  5. SwordMonkey

    Convert range of text to number in VBA?

    I'm importing some ID's from an Oracle DB into Excel. They come over alright, but when I go into the spreadsheet, there's a little ! next to the cells and says "Number stored as Text" I can then manually convert these to Numbers which fixes the problem. However, I'd like to know if...

Part and Inventory Search

Back
Top