Am I wrong here (usually am) - It seems in a query a calculated field (residing in that query) will require a subquery to be used if you reference the query name in the formula:
Whereas if you reference the field itself it will not:
I'm confused - I thought if the query was relying on info from another query; calculated fields in particular; the value is not know at compilation time - so it cannot derive the value. Whereas if a table was referenced it knows the value at compilation time so the calculated field would work. BUT this latest hurdle has me stumped. Saying this it's pretty late.
Code:
AliasName: [QueryName]![CalculatedField1]*[QueryName]![CalculatedField2]
Whereas if you reference the field itself it will not:
Code:
AliasName: [CalculatedField1]*[CalculatedField2]
I'm confused - I thought if the query was relying on info from another query; calculated fields in particular; the value is not know at compilation time - so it cannot derive the value. Whereas if a table was referenced it knows the value at compilation time so the calculated field would work. BUT this latest hurdle has me stumped. Saying this it's pretty late.