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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Clipper2000

  1. Clipper2000

    Calculate Query

    SELECT Field1, sum(field2) as A, sum(field3Percent) as B, sum("enter your expression here") as C From YourTable Group By Field1
  2. Clipper2000

    Need a favor: please paste this SQL to your db and saved it

    Thanks for the info ByteMyzer. It appears that when the query is saved the first time, Access will writes to the system table with the correct syntax. Any subsequent runs will be based on the system table and the fact the query designer revert to the {}. syntax is ignored at that point.
  3. Clipper2000

    Need a favor: please paste this SQL to your db and saved it

    Hi Michael, I have the database being discuss on my PC, and I can say that putting "" around the AS such as "AS" won't work. The syntaxes PHV proposed are correct one. In all honestly, I learned this little "FROM (SELECT .....) AS alias" syntax from PHV in the last few days and for that I...
  4. Clipper2000

    Need a favor: please paste this SQL to your db and saved it

    You are right that the query builder have something to do with it. The correct syntax is: SELECT B.GLM, A.Description, A.Accpac, A.Amount, A.Category, A.Period, A.Year FROM tbl90707 AS A INNER JOIN (SELECT DISTINCT GLM, Accpac FROM [GLM:ACCPAC]) B ON A.Accpac = B.Accpac WHERE A.Accpac <...
  5. Clipper2000

    Need a favor: please paste this SQL to your db and saved it

    This is wild ! Instead of creating the query definition in the query designer, which will not saved properly. The whole thing works if I create the query using DAO like this: Sub CreateQry() Dim db As DAO.Database Dim rst As DAO.Recordset Dim strSQL As String...
  6. Clipper2000

    Should an Access developer switch to FoxPro

    Hi there, I used to use FoxPro2 (DOS) long long time ago (over 10 years ago) and find it a lot better than dBase 4 at the time. My preference was and still like the product a lot. I became an Access developer not by choice but by circumstance. You see, a lot of companies have Access in their...
  7. Clipper2000

    Cross Tab queries: How to change the column name with an alaise name

    Example CrossTab query: TRANSFORM Sum([tbl90707].[Amount]) AS Amount SELECT [NelNetRollUp].[Total], [NelNetRollUp].[SubTotal], [tblNelNetMapEdulinx].[Account], [tblNelNetMapEdulinx].[subAcct], [tbl90707].[Accpac], [tbl90707].[Description], [tblNelNetRollUpOrder].[RollUpOrder] FROM ((tbl90707...
  8. Clipper2000

    How many here think VB6 is outdated.

    Personally, I really like coding with VB6 because the door is wide open to ActiveX connections. Will it be worth my efforts to continue upgrading my skills with this coding idiom.
  9. Clipper2000

    How to create a JET from a virtual ADO recordset ?

    Hi again, By the way, there is a big limitation to attach only a SQL string to the record source such as: Me.RecordSource = rst.Source This is because the source never change, even if you manipulate the ADO afterward, ie, filtering it etc. As a result, PHV's method of attaching a true ADO set...
  10. Clipper2000

    How to create a JET from a virtual ADO recordset ?

    Hi cmmrfrds, I used Access 2000, I have 2002 but never try it. You are right that in Access 2000 the Report does not have a recordset object. However, I should have thought of Me.RecordSource = rst.Source, its my mistake :). Personally I prefer PHV's version.
  11. Clipper2000

    How to create a JET from a virtual ADO recordset ?

    Hi, Thanks gentlemen for your excellent answers ! The Me.RecordSource = rst.Source will return a SQL string and as a result, it worked, and this is exactly what I need !
  12. Clipper2000

    How to create a JET from a virtual ADO recordset ?

    Hi, There is a discussion in the Access Reports forum on how to attach an ADO recordset to the Me.RecordSource property. So far attaching an ADO recordset to the RecordSource property doesn't seem possible in a regular report, it may be possible in ADP. This is because the Me.RecordSource...
  13. Clipper2000

    Can I supplied an ADO recordset as Me.RecordSource

    Hi payback, I'm assuming this works on ADP, but this doesn't seem to work on a regular Access report. The codes are fine, except that the "Set Me.Recordset = rstf" hangs. It appears that the "Set Me.Recordset = rstf" only works in a regular Form but not a regular report. Perhaps this is why...
  14. Clipper2000

    Query Too Complex

    Hi, For what it's worth, here's my sugestion: Ditch this query and rewrite (code) it properly in a VBA module, with plenty of comments and explanations. Then use the DAO class to create the query for you by running the module. The difference is this approach make debugging a lot easier few...
  15. Clipper2000

    Need a favor: please paste this SQL to your db and saved it

    Hi GingerR, You are right again. I tried picking it apart by having 2 separate queries and it worked. I am sorry for getting you through with all this. My purpose here is curiosity and testing (or play with) the Access query designer, not necessary JET 4.0 engine. I think JET 4.0 is fine...

Part and Inventory Search

Back
Top