Export Query result To A Table

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • azzi2000
    New Member
    • Oct 2006
    • 6

    Export Query result To A Table

    This should be rather simple.
    I have a query using different link tables and 2 parameters.
    The query works perfect.

    However I need to export or save the result in an Access table in order to export it to an ascii file delimited. (Quote delimited with comma)
    - I tried to export to an ascii but I am getting: Too few parameters.

    It would be best if I can export the result to an Access table then export the result using the specs built in access export.
    Please help.
    Thank you.
    André
  • MMcCarthy
    Recognized Expert MVP
    • Aug 2006
    • 14387

    #2
    Have you tried changing the query type to a Make-Table Query. In query design go to the query menu and select it.
    Originally posted by azzi2000
    This should be rather simple.

    I have a query using different link tables and 2 parameters.
    The query works perfect.

    However I need to export or save the result in an Access table in order to export it to an ascii file delimited. (Quote delimited with comma)
    - I tried to export to an ascii but I am getting: Too few parameters.

    It would be best if I can export the result to an Access table then export the result using the specs built in access export.
    Please help.
    Thank you.
    André

    Comment

    • azzi2000
      New Member
      • Oct 2006
      • 6

      #3
      Originally posted by mmccarthy
      Have you tried changing the query type to a Make-Table Query. In query design go to the query menu and select it.
      This is exactly what I waas looking For.
      THANK YOU. THANK YOU.
      André

      Comment

      • cynicon
        New Member
        • Feb 2010
        • 20

        #4
        Use

        DoCmd.SetWarnin gs False
        DoCmd.SetWarnin gs True

        To avoid interruptions =)

        Comment

        Working...