Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi experts
I am getting the error message "invalid expression". I don't see any issue. Can you please help? Many thanks.
[Fact_temp20]:
Load
*,
(Sum([Actual Cost]) + Sum([Additional Costs])) as [Total ]
Resident [Fact_temp10];
Drop Table [Fact_temp10];
all fields which are not used by an aggregation.
aggregations like "sum" requires a "group by" in Load statement!
Thanks Frank, which fields must be part of the group by statement? All fields of the first table?
all fields which are not used by an aggregation.