Thanks for your note.
You could create two conditions in your condition set. One condition checking if the value is < 4 and a second condition that checks if the value is > 1.
For example, the sample code below demonstrates this.
if (x < 4 && x > 1)
{
//do something.
}

Comment