Results 1 to 4 of 4
  1. #1
    MFS is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Mar 2009
    Location
    Ohio
    Posts
    235

    Pass Through Query Only shows data from one table, WHY??

    My Pass Through Query Looks like this . . . . .


    HTML Code:
    select date_1,Time_1,Cope_Temp_1_L,Cope_temp_1_R, Drag_Temp_1_L,Drag_Temp_1_R,Location_1,Cavity_1, Device_1 from dbo.Cell_1_TT_Device_1 
    
    select date_2,Time_2,Cope_Temp_2_L,Cope_temp_2_R, Drag_Temp_2_L,Drag_Temp_2_R,Location_2,Cavity_2, Device_2 from dbo.Cell_1_TT_Device_2
    
    select date_3,Time_3,Cope_Temp_3_L,Cope_temp_3_R, Drag_Temp_3_L,Drag_Temp_3_R,Location_3,Cavity_3, Device_3 from dbo.Cell_1_TT_Device_3;
    But only shows data for the dbo.cell_1_TT_Device_1 ??????

  2. #2
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,652
    Does this provide the desired result?

    Code:
    select date_1,Time_1,Cope_Temp_1_L,Cope_temp_1_R, Drag_Temp_1_L,Drag_Temp_1_R,Location_1,Cavity_1, Device_1 from dbo.Cell_1_TT_Device_1
    UNION ALL
    select date_2,Time_2,Cope_Temp_2_L,Cope_temp_2_R, Drag_Temp_2_L,Drag_Temp_2_R,Location_2,Cavity_2, Device_2 from dbo.Cell_1_TT_Device_2
    UNION ALL
    select date_3,Time_3,Cope_Temp_3_L,Cope_temp_3_R, Drag_Temp_3_L,Drag_Temp_3_R,Location_3,Cavity_3, Device_3 from dbo.Cell_1_TT_Device_3
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  3. #3
    MFS is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Mar 2009
    Location
    Ohio
    Posts
    235
    Thanks Pbaldy, Yep that was it.

  4. #4
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,652
    No problem.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 6
    Last Post: 06-21-2014, 07:11 AM
  2. Replies: 1
    Last Post: 05-02-2014, 09:29 AM
  3. Replies: 5
    Last Post: 08-06-2013, 11:25 AM
  4. Query has data, Report shows zeros
    By smeghead67 in forum Reports
    Replies: 5
    Last Post: 01-17-2013, 02:25 PM
  5. Report based on query shows no data
    By hbograd in forum Reports
    Replies: 2
    Last Post: 12-18-2009, 12:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums