Hi @insights360 ,
Do you want to justify whether the data filled in the textinput is larger than 10?
I've made a similar test for your reference:
I insert a textinput (to enter data) and a label (to justify the data in the textinput).
If a user insert a number larger than 10 in the textinput, the label will display. Or else, it will disappear.
Set the label's Visible:
If(Value(TextInput1.Text)>10,true,false)
Then the label's appearance will be decided by the textinput.

On your side, you should set Label33's Visible:
If(Value(Datacardvalue14.Text)>10,true,false)
To sum up, if you want to convert text data to number data, you just need to use this kind of formula:
Value(text data)
Best regards,