Looking at the conditions, it looks like you're trying to say "if column 1 has more than column 2 or column 3, then do something." JavaScript can't read conditions like that. It's reading "if (column 1 has more than column 2) OR (column 3)," and it doesn't know what to do with that column 3 number u...