B
Bob
I am building an expression where I add the first 4 months of sales so that
it is contained in one column. However, when I run the query I receive all
the 4 months of numbers in one cell instead of in total. For example, I'll
get 4.352.10 instead of 6.45. Here is my SQL Code:
SELECT [Qry_AIT_FSE _COGS_Summary_Crosstab].Region, [Qry_AIT_FSE
_COGS_Summary_Crosstab].FSE, [Qry_AIT_FSE
_COGS_Summary_Crosstab]![2005-01]+[Qry_AIT_FSE
_COGS_Summary_Crosstab]![2005-02]+[Qry_AIT_FSE
_COGS_Summary_Crosstab]![2005-03]+[Qry_AIT_FSE
_COGS_Summary_Crosstab]![2005-04] AS Expr1
FROM [Qry_AIT_FSE _COGS_Summary_Crosstab];
Thanks
it is contained in one column. However, when I run the query I receive all
the 4 months of numbers in one cell instead of in total. For example, I'll
get 4.352.10 instead of 6.45. Here is my SQL Code:
SELECT [Qry_AIT_FSE _COGS_Summary_Crosstab].Region, [Qry_AIT_FSE
_COGS_Summary_Crosstab].FSE, [Qry_AIT_FSE
_COGS_Summary_Crosstab]![2005-01]+[Qry_AIT_FSE
_COGS_Summary_Crosstab]![2005-02]+[Qry_AIT_FSE
_COGS_Summary_Crosstab]![2005-03]+[Qry_AIT_FSE
_COGS_Summary_Crosstab]![2005-04] AS Expr1
FROM [Qry_AIT_FSE _COGS_Summary_Crosstab];
Thanks