D
dwaynesworld
I have a query linked to a subreport that may have null entries based on
which individual's data is pulled. What I would like is to display the
subreport even if there are null values. This is my query
SELECT IIf(IsNull([Support Date]),"None",[Support Date]) AS [Date],
IIf(IsNull([Organization Name]),"None",[Organization Name]) AS [Org Name],
IIf(IsNull([Organization Hrs]),0,[Organization Hrs]) AS [Organization Hours],
IIf(IsNull([SME Activities]),"None",[SME Activities]) AS [SME Act],
IIf(IsNull([SME Hrs]),0,[SME Hrs]) AS [SME Hours],
qryIndividualBusSupportData.[Total Bus Spt Hrs]
FROM qryIndividualBusSupportData
GROUP BY IIf(IsNull([Support Date]),"None",[Support Date]),
IIf(IsNull([Organization Name]),"None",[Organization Name]),
IIf(IsNull([Organization Hrs]),0,[Organization Hrs]), IIf(IsNull([SME
Activities]),"None",[SME Activities]), IIf(IsNull([SME Hrs]),0,[SME Hrs]),
qryIndividualBusSupportData.[Total Bus Spt Hrs];
Please help
which individual's data is pulled. What I would like is to display the
subreport even if there are null values. This is my query
SELECT IIf(IsNull([Support Date]),"None",[Support Date]) AS [Date],
IIf(IsNull([Organization Name]),"None",[Organization Name]) AS [Org Name],
IIf(IsNull([Organization Hrs]),0,[Organization Hrs]) AS [Organization Hours],
IIf(IsNull([SME Activities]),"None",[SME Activities]) AS [SME Act],
IIf(IsNull([SME Hrs]),0,[SME Hrs]) AS [SME Hours],
qryIndividualBusSupportData.[Total Bus Spt Hrs]
FROM qryIndividualBusSupportData
GROUP BY IIf(IsNull([Support Date]),"None",[Support Date]),
IIf(IsNull([Organization Name]),"None",[Organization Name]),
IIf(IsNull([Organization Hrs]),0,[Organization Hrs]), IIf(IsNull([SME
Activities]),"None",[SME Activities]), IIf(IsNull([SME Hrs]),0,[SME Hrs]),
qryIndividualBusSupportData.[Total Bus Spt Hrs];
Please help