E
EAB1977
Is there a way to get rid of nulls from the PIVOT section of a
corsstab query? I have many Tests in the below crosstab query,
seperated by TestIDs. For a certain TestID, I'd like to have the Nulls
removed. Is this possible?
TRANSFORM First(qryVDRProductionRuns.TestValue) AS FirstOfTestValue
SELECT qryVDRProductionRuns.PlantCode,
qryVDRProductionRuns.ProductCode, qryVDRProductionRuns.PositionRow,
qryVDRProductionRuns.ProductionDate
FROM qryVDRProductionRuns
GROUP BY qryVDRProductionRuns.PlantCode,
qryVDRProductionRuns.ProductCode, qryVDRProductionRuns.PositionRow,
qryVDRProductionRuns.ProductionDate, qryVDRProductionRuns.PlantCode,
qryVDRProductionRuns.ProductionDate, qryVDRProductionRuns.ProductCode
ORDER BY qryVDRProductionRuns.PlantCode,
qryVDRProductionRuns.ProductionDate, qryVDRProductionRuns.ProductCode
PIVOT qryVDRProductionRuns.TestID;
corsstab query? I have many Tests in the below crosstab query,
seperated by TestIDs. For a certain TestID, I'd like to have the Nulls
removed. Is this possible?
TRANSFORM First(qryVDRProductionRuns.TestValue) AS FirstOfTestValue
SELECT qryVDRProductionRuns.PlantCode,
qryVDRProductionRuns.ProductCode, qryVDRProductionRuns.PositionRow,
qryVDRProductionRuns.ProductionDate
FROM qryVDRProductionRuns
GROUP BY qryVDRProductionRuns.PlantCode,
qryVDRProductionRuns.ProductCode, qryVDRProductionRuns.PositionRow,
qryVDRProductionRuns.ProductionDate, qryVDRProductionRuns.PlantCode,
qryVDRProductionRuns.ProductionDate, qryVDRProductionRuns.ProductCode
ORDER BY qryVDRProductionRuns.PlantCode,
qryVDRProductionRuns.ProductionDate, qryVDRProductionRuns.ProductCode
PIVOT qryVDRProductionRuns.TestID;