B
Bart Tse
Hello all,
I have a crosstab query (SQL below) that will display yes/no values fine
except when there is no data for that particular spot(Null I'm guessing). Is
there a way to default the cells to "NO"? Maybe another function besides Max
or something I can give Max?
Thanks
TRANSFORM Max(IIf([Attended],"Yes","No")) AS TheValue
SELECT [Six Sigma Focus Group Attendence].Name AS ID, [Six Sigma Focus Group
Attendence].[Company Represented]
FROM [Six Sigma Focus Group Attendence]
GROUP BY [Six Sigma Focus Group Attendence].Name, [Six Sigma Focus Group
Attendence].[Company Represented]
PIVOT [Six Sigma Focus Group Attendence].[Meeting Date];
I have a crosstab query (SQL below) that will display yes/no values fine
except when there is no data for that particular spot(Null I'm guessing). Is
there a way to default the cells to "NO"? Maybe another function besides Max
or something I can give Max?
Thanks
TRANSFORM Max(IIf([Attended],"Yes","No")) AS TheValue
SELECT [Six Sigma Focus Group Attendence].Name AS ID, [Six Sigma Focus Group
Attendence].[Company Represented]
FROM [Six Sigma Focus Group Attendence]
GROUP BY [Six Sigma Focus Group Attendence].Name, [Six Sigma Focus Group
Attendence].[Company Represented]
PIVOT [Six Sigma Focus Group Attendence].[Meeting Date];