cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X

Infotable Aggregate on multiple columns

VaibhavShinde
16-Pearl

Infotable Aggregate on multiple columns

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?

VaibhavShinde_0-1592377741640.png

when i try with only one column, the above code works fine.

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions

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" 
});

View solution in original post

1 REPLY 1

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" 
});
Top Tags