@charabor1 just for the fun of it I let ChatGPT figure this one out and come up with a working yet maybe un-managable Java Snippet Code and also create some sample data by guessing … enjoy
edit: to give this a more helpful touch. @charabor1 maybe you want to take a look at a similar problem and the use of Column Expressions:
@alicemello you can use a Java Snippet or a Column Expression node to have if, then, else conditions.
Your example adapted to the Column Expression node would look like this:
[image]
if (column("Age") >= 18 && column("Age") <= 30 &&
column("AST") >= 150 && column("AST") <= 250 &&
column("3P") >= 90 && column("3P") <= 150 &&
column("PTS") >= 800 && column("PTS") <= 1400 &&
column("TOV") >= 80 && column("TOV") <= 180) {
"G";
} else if (column("Age") >= 18 && column("Age…
5 Likes