I
inungh
TRANSFORM IIf(IsNull(Sum([correct])/Sum([totalIKB])),0,(Sum([correct])/
(Sum([totalIKB])-IIf(IsNull(Sum([not presented])),0,Sum([not
presented]))))) AS Result
SELECT [SP GET CSR CURRENT IKB RAW].Weekending
FROM [SP GET CSR CURRENT IKB RAW]
GROUP BY [SP GET CSR CURRENT IKB RAW].Weekending
PIVOT [SP GET CSR CURRENT IKB RAW].SplitName
I have above crosstab query called SP GET CSR CURRENT IKB RESULT which
is working.
I got Circular Reference caused by SP GET CSR CURRENT IKB RESULT when
I create a new select query want to select some field from this query.
A little confused is the crosstab query is working and have a select
query only put one field to select. i am not sure where the Circular
Reference come from.
Your help is great appreciated,
(Sum([totalIKB])-IIf(IsNull(Sum([not presented])),0,Sum([not
presented]))))) AS Result
SELECT [SP GET CSR CURRENT IKB RAW].Weekending
FROM [SP GET CSR CURRENT IKB RAW]
GROUP BY [SP GET CSR CURRENT IKB RAW].Weekending
PIVOT [SP GET CSR CURRENT IKB RAW].SplitName
I have above crosstab query called SP GET CSR CURRENT IKB RESULT which
is working.
I got Circular Reference caused by SP GET CSR CURRENT IKB RESULT when
I create a new select query want to select some field from this query.
A little confused is the crosstab query is working and have a select
query only put one field to select. i am not sure where the Circular
Reference come from.
Your help is great appreciated,