Forum Discussion
DanCasSan
Helper V
6 years agoDistinctive calculation
Hi community, I am doing an operation to obtain the summation of one of my fields, it must meet certain filters, but in the end it must bring me the totalized in a unique way. For example, I have my...
amitchandak
Super User
6 years agoYou can create a new table like
summarize(filter(table, table[ILE00]="MIN"),table[BWART],table[AUFNR],table[ISM00],table[ILE00])
Appreciate your Kudos.
DanCasSan
Helper V
6 years agoHi amitchandak , thanks for your help, but the result throws me a table and I need to do the sum of a column of that summary table.