Hi,
I have a bunch of numeric values I want to compare but some are marked as numbers stored as text and some are not. This causes some problems when I use the logical operators for comparison, for example 0.10 < 0.08 would return true. What is the best way to get around this? Should I convert the numbers stored as text to numbers? Or convert all the values to text (not sure if the logical operators work as expected when applied to numbers stored as text)? I'm looking for the safest way because I do not want to mess with my original data too much.
Thanks.
I have a bunch of numeric values I want to compare but some are marked as numbers stored as text and some are not. This causes some problems when I use the logical operators for comparison, for example 0.10 < 0.08 would return true. What is the best way to get around this? Should I convert the numbers stored as text to numbers? Or convert all the values to text (not sure if the logical operators work as expected when applied to numbers stored as text)? I'm looking for the safest way because I do not want to mess with my original data too much.
Thanks.