Checking Correctness of Answer to Display

I would like to check the answer my students input to display “Correct!!” when they get it right. Unfortunately, the answers are rounded decimals and depending on how things are rounded in the problem (whether they keep what’s in their calculator, truncate or other ways), there is a range of correct values for most questions. Is there a way to check a range of correctness? For example, this is correct if it’s greater than 61.5, but less than 61.8?

You can set a tolerance range. Something like

this.numericValue > 61.5 and this.numericValue < 61.8

Thank you. I figured it out right after I posted this. I had tried that and must have just typed it wrong. Thank you thank you!!