Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
Hi ,
I am trying aggregating multiple columns as shown below, i tried with putting comma separated columns but don't work. What is the solution?
when i try with only one column, the above code works fine.
Thanks
Solved! Go to Solution.
You aren't using the right format, columns it's a comma separated list of values, and aggregates also:
var result = Resources["InfotableFunctions"].Aggregate({
t: result1,
columns: "ApparentPower,ConsumePower",
aggregates: "SUM,SUM",
groupByColumns: "Mkey"
});
You aren't using the right format, columns it's a comma separated list of values, and aggregates also:
var result = Resources["InfotableFunctions"].Aggregate({
t: result1,
columns: "ApparentPower,ConsumePower",
aggregates: "SUM,SUM",
groupByColumns: "Mkey"
});