VincentCrimmins
Programmer
Hi,
I have a set of significant values: 8, 8.5, 9, 9.5,etc and I want to flag when a particular value, to four decimal places, is within a 0.1 range of these sigificant values.
I have a table that lists the significant value increments, in this case 0.5, and the within range value, in this case 0.1.
For example, if I have a value of 8.4251, its within 0.1 of 8.5, so I want to flag it.
I don't want to make it static, as I have a number of different series with differing increment values and within range values. Is it possible to take the 8.4251 and round it to 8.5 and 8 and then say if its within 0.1 of either?
Thanks,
I have a set of significant values: 8, 8.5, 9, 9.5,etc and I want to flag when a particular value, to four decimal places, is within a 0.1 range of these sigificant values.
I have a table that lists the significant value increments, in this case 0.5, and the within range value, in this case 0.1.
For example, if I have a value of 8.4251, its within 0.1 of 8.5, so I want to flag it.
I don't want to make it static, as I have a number of different series with differing increment values and within range values. Is it possible to take the 8.4251 and round it to 8.5 and 8 and then say if its within 0.1 of either?
Thanks,