You could use a textbox instead of a label for the 'title'.
Then just conditionally display what you want. (Set the control source to the equal sign and something to evaluate your data).
=IIF(FieldWithValue = 30,"Open","Closed")
Technically, that will display Open if 30 is in the field and Closed if anything else is.