Check if multiple column values fall within range
Sample table:PartTest 1Test 2Test 3Test 4A0.20.40.30.1B0.20.30.40.6C0.70.10.20.4I would like to add a column to this table that evaluates every value in columns Test 1-Test 4, and if all fall within a range to output "Yes".For example, if my range was 0 < values < 0.5, the output would look like this (I've highlighted failing values in red)PartTest 1Test 2Test 3Test 4Yes/NoA0.20.40.30.1YesB0.20.30...