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 Joeclueless

  1. Joeclueless

    Comparison

    I'm going to need to get back to this tomorrow. I'll create better examples or Attach sample tables... Which do you think is better? Thanks again! Joe
  2. Joeclueless

    Comparison

    Need to collect myself... Just had experienced an Earthquake! Thanks again! Joe
  3. Joeclueless

    Comparison

    This returns a syntax error in FROM clause... Thanks again! Joe
  4. Joeclueless

    Comparison

    I'm soooo sorry.... I forgot about those extra records in the sample..... Yes, they should be included.... I will try this right now... Thanks again! Joe
  5. Joeclueless

    Comparison

    PHV, That did not quite work... But look at the sample I posted for lespaul. if the return looked like this, it may work: POLYID CalKeyStack SCHOOL_ID LO_GRD HI_GRD LEVEL 1 A 1234 0 5 E 1 A...
  6. Joeclueless

    Comparison

    Thanks for bearing with me Leslie! tblPolyKeyStack POLYID SCHOOL_ID LO_GRD HI_GRD LEVEL 1 1234 0 5 E 1 4582 6 8 M 1 8564 9 12 H...
  7. Joeclueless

    Comparison

    Leslie, Right now what I have are two reports that are grouped on the ID fields. What I want to do is compare the groupings and transfer the POLYID value from tblPolyKeyStack to the matched set of records in CalKeyStack. So, Maybe what I need to do is have a report with a subreport. The main...
  8. Joeclueless

    Comparison

    Leslie, thanks for letting me know that I am not communicating my dilemma effectively.... Sorry for any vague descriptions.... Here are the samples: tblPolyKeyStack Sample POLYID SCHOOL_ID LO_GRD HI_GRD LEVEL] 1 1234 0 5 E...
  9. Joeclueless

    Comparison

    If possible, could someone let me know if they understand what I mean by matched record groupings and how they differ from matched records? Thanks again! Joe
  10. Joeclueless

    Comparison

    I should have said matching up exact groupings would be a GREAT start. Does this rewording shed light on the difference I am trying to emphasize? Thanks for all posts! Again, tblPolyKeyStack is grouped on POLYID and tblCalKeyStack is grouped on CalKey. These two fields have nothing in...
  11. Joeclueless

    Comparison

    Hey, The fields combined don't really make it unique. Many records in many groups have the same combination in both tables. The unique thing is the combination of records that are grouped by [CalKey] or [POLYID]. As for the question of dropped fields, the Code field [tblCalKey.ZeroCode] is...
  12. Joeclueless

    Comparison

    Well, I fixed up my tables to eliminate reserved words.... so I now have the code snippet modified to match. I am getting different results that I expected. Here is the query code: SELECT tblCalKeyStack.*, tblPolyKeyStack.* FROM tblCalKeyStack INNER JOIN tblPolyKeyStack ON...
  13. Joeclueless

    Comparison

    Hey, Thanks Tyrone, but I suppose I need to get into deeper details. There is a spatial element to this data, that exists in only one of the tables. The group ID in that first table is based on those regions. The second table, that I want to transfer the region IDs to, has similar info...
  14. Joeclueless

    Comparison

    Tyrone, Here is the thing, there is no common field. The groupings should have equal and similar records, but I am wanting to pass the ID from one group to the other... The first table has: Group_ID Item_ID LowGrade HiGrade Type Name Range The second table has: Group_ID (different from...
  15. Joeclueless

    Comparison

    Thanks Tyrone, What if the IDs in the two tables are not the same? Thanks again! Joe

Part and Inventory Search

Back
Top