Hoping to find some answers on a strange issue. Below is a snapshot of my make table in the datasheet view. Note the data in the R12 PU% column header.

below is the data produced when I run the new table. There are several hundred records in this table, most of them are 0, but there are also a handful of 1's as well. Why is the data not transferring like my other 3 columns?

below is my sql for the make table qry:
Code:
SELECT RUL.Hierarchy, PTRSC_SOLByConfigAveragesR12.AvgUnitCount AS [R12 Average Unit Count], PTRSC_SOLByConfigAveragesR12.AvgFleetSizeOEC AS [R12 Average OEC], PTRSC_SOLByConfigAveragesR12.AvgFleetOnRentOEC AS [Physical Ute ($)], PTRSC_SOLByConfigAveragesR12.AvgOnRentPercent AS [R12 PU%] INTO qry_make_table_CC_Performance_MetricsFROM RUL LEFT JOIN PTRSC_SOLByConfigAveragesR12 ON RUL.Hierarchy = PTRSC_SOLByConfigAveragesR12.CategoryClassification
GROUP BY RUL.Hierarchy, PTRSC_SOLByConfigAveragesR12.AvgUnitCount, PTRSC_SOLByConfigAveragesR12.AvgFleetSizeOEC, PTRSC_SOLByConfigAveragesR12.AvgFleetOnRentOEC, PTRSC_SOLByConfigAveragesR12.AvgOnRentPercent;