There is a small issue with JSL in handling
:MTV * -6
JSL can be looking at -6 as a subtraction, not as a negative number. Therefore it is wiser to reference it as
:MTV * (-6)
to insure JMP interprets it correctly.
Below are a couple of different ways to set the formula to get the results you want.
New Column ("P/F", Numeric, "Nominal", Formula(If(:MTV *(-6) < :MDH < :MTV * 6,1,0)))
//or
New Column ("P/F", Numeric, "Nominal", Formula(If(:MTV *(-6) < :MDH | :MDH > :MTV * 6,0,1)))
Jim