is float?

I’d like to delete all points where a certain attribute is an integer and keep the points where the attribute is a float. So how can I find out if a value is an integer or a float?

Try comparing the floor() of the value with the original value

Thanks Malcolm,

ended up using a $val%1>0 based check.