How to do a SUM with condition?

Hi,

I need make a sum with condition. I like to sum the values by month and year, for example.

Basic I need something like the function SUM-IF the excel.

year month status values
2012 1 1 100
2012 1 1 50
2012 1 2 100
2012 1 2 200
2012 2 2 300
2012 3 2 50
2012 8 2 20
2012 8 3 50
2012 5 3 100
2012 5 3 20

Hi,
To sum by month and year, use the GroupBy node.
Once you learn this powerful, useful node I’ll bet you’ll use it often.
See attached workflow
-Don
GroupBy Year and Month.knwf (6.3 KB)

3 Likes

you cloud use a Rule Engine node to define some rule before aggregating the values, so you could define more complex scenarios.

GroupBy Year and Month.knwf (17.1 KB)

1 Like

Hi @tsantunes,

I found this primer on common Excel operations in KNIME useful:

2 Likes