compare logged description to lab USCS in text table

I've got a fairly simple text table, where for each sample, I want to compare the logged ASTM Group Name developed by field inspection to the more accurate ASTM Group Name determined by Grain Size and Atterberg.  I have the following fields in my text table:

Borehole        <<SAMPLE.PointID>>
Inspector        <<Lookup(<<DRILLING INFORMATION.Inspector>>,<<DRILLING INFORMATION.PointID>>=<<SAMPLE.PointID>>)>>
Sample Number        <<SAMPLE.Sample_Number>>
Sample Depth        <<SAMPLE.Depth>>
Logged Group Name        <<sql(Select [Group_Name] From [Sample_Desc] Where (([Sample.PointID]=[Sample_Desc.PointID]) and ([Sample.Depth]=[Sample_Desc.Sample_Depth])))>>
Lab Group Name       <<ASTM_Name(<<SV READINGS.Reading>><<#>>,<<SV READINGS.Percent_Finer>>,_
            <<ATTERBERG.Plastic_Limit>>,<<ATTERBERG.Liquid_Limit>>,_
            <<ATTERBERG.Organic>>)>>

Everything is working fine except the "Logged Group Name"  I've tried many different permutations but I cannot get it to select the correct logged description, which is in the field <<SAMPLE_DESC.Group_Name>>.  I've tried lookups and SQLs and am not having luck.

The keyset for the table is POINTID,Depth.

Thank you for your help.