Use visual basic script. It shows red/green like you want
but unfortunately doesn't print it. MathCAD needs to fix.
the VB script that controls the display of Text Box 2
Sub TextBoxEvent_Exec(Inputs,Outputs)
If Inputs(0).Value > Inputs(1).Value And Inputs(0).Value < Inputs(2).value Then TextBox.BackColor = vbGreen
TextBox.Text="GOOD"
Else
TextBox.BackColor=vbRed
TextBox.Text="BAD"
End If
End Sub