I think the error is because of the limit in the integer data type. What I meant to say is that, Integer(in QGIS) can take only the number until 2^32 -1. So, 1111111111 can be written where as 2222222222 cannot be written. For this, you need to take "long long int" as a data type so that you can have any integer until 2^63 -1.
-- View this message in context: http://osgeo-org.1560.x6.nabble.com/Error-in-simple-calculation-in-Field-Calculator-tp5102486p5103610.html Sent from the Quantum GIS - User mailing list archive at Nabble.com. _______________________________________________ Qgis-user mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/qgis-user
