Transform numeric to binary

Hello together,

I have got a data table filled with integer values (between 0 and 350). Now I want to replace all the numbers which are > 0 with a 1. so the 0 values should remain 0 and all other values should be 1.

How can I transform the table in KNIME?

Thanks in advance for your help!

I guess there are dozens of potential solutions, here comes one: Use the "Rule Engine" node and apply the following rule:

// value is zero
$input$ = 0 => 0
// the default case
TRUE => 1