Select on Single cell in a Table

Hi, i would like to know how i can choose with the Java snipped one cell in a table. I need to muliplie few cells but Not all.

Thank you

Could this be a job for a Rule engine combined with a Math Node?

kn_example_mulitply_one_cell_not_all.knwf (24.1 KB)

Not Bad, but have to be more specific, is IT Not possible just to type the row id and the Position in the column?

Yes that is also possible with Java Snippet for example

Double result;
if ($$ROWID$$.equals("Row1")) {
result = $Universe_1_1$ * 1000;
} else {
result = $Universe_1_1$;
}
return result;

kn_example_mulitply_one_cell_not_all.knwf (29.4 KB)

No, i mean , that is easy to realize in knime, but i need one particular cell, i mean for example row 3 column 4, you understand ?

Hi there!

Maybe this topic can help:

Br,
Ivan