I got this query. I got into the properties of the %forNULL field, set it 3 decimals, set it to percent. What is happing is this the sum of is 75, so 100-75 is 25. The NULLS of is 2, so 25/2 is 12.5. I'm getting 12 ?????
SELECT [Samples1].[Lot No], Sum(IIf(IsNull(),1,0))/(100-Sum()) AS [%forNULL]
FROM Samples1
WHERE (((Left([Lot No],2))="`¥"))
GROUP BY [Samples1].[Lot No];
Willie
SELECT [Samples1].[Lot No], Sum(IIf(IsNull(
FROM Samples1
WHERE (((Left([Lot No],2))="`¥"))
GROUP BY [Samples1].[Lot No];
Willie