I am using VBA to check if the values of two variables are equal, using the "<>" operator. I run that operation for several pairs of values in several pairs of columns. The values are ALL formatted as numbers and the variables are of type "double".
For most of the value pairs it works fine, however for several pairs (corresponding to two columns) there is an issue:
For some of the values the operator treats equal values as unequal. When I debug, I can see that the operator says 71,192 <> 71,192 and the operator treats these values as unequal.
The other value pairs in their corresponding columns work fine but I cannot see any differences between them and the ones that are not working.
Any help would be highly appreciated.
Jochen