My need is two parts which is indicated below by bullets
The data coming through the workflow for this column I'm working with is text from the database and can have just about anything in it.
My goal is to only handle values that are whole numbers including decimals, excluding negative numbers. Anything outside of this including negative numbers can be ignored and pass through as a blank or [null].
I've already trimmed spaces from the front of the data
- I need a formula that will restrict the data passed through to only numbers that look like the following (95.1, 95, 101, 101.95, 0.5, 101.155)
My end goal will be to round the number up or down depending on standard evaluation of the tenths place so that the number is no longer a decimal
(example: 101.155 will return 101, 95.4 will return 95, 95.5 will turn 96)
- Which tool and formula will handle this rounding best