Qliksense data load editor script aggregation syntax?
I'm trying to do a simple aggregation in the Qliksense data load editor. However, this results in an error. Is there a particular Qlik syntax to follow to achieve this?
Load
"var_1",
"var_2",
"var_3",
"agg"
SQL select "var_1", "var_2", "var_3", sum("var_4") as "agg"
from table
groupby "var_1", "var_2", "var_3"