adding 100 to a grid does not affect the count field, but the class values. The count fields represents the number of cells that belone to a particular class. convert your raster to a grid, assuming it is an integer grid, compare the before and after results of adding 100 to your original grid to confirm
visual inspection can be deceiving, don't rely on it. during the conversion process, did you ensure that the extent and cell size were explictly set during the conversion process? if not then ESRI defaults will come into play and the cell size and extent and hence counts etc may change. do not rely on anything unless you have check the most important steps. if none of this applies, then you will need to provide concrete screen grabs/zip files of what exactly you mean isn't happening so that others can investigate further
Regards
File 2.jpg shows us many things, all of them internally consistent:The data shown in File 1.jpg conflict with this. In particular, a grid of less than 171 million cells simply cannot have a valid count of 465,635,133 for any single value.
- The grid uses one byte per cell (uncompressed).
- It has 17,167 columns and 9,953 rows, yielding 170,863,151 cells.
- Its uncompressed size on disk is "162.95 MB," which is exactly what 170,863,151 converts to when divided by 2^20 = 1,048,576 = one megabyte.
- The cellsize is 0.000941698 (decimal degrees), implying the horizontal extent is 17167*0.000941698 = 16.1661 degrees and the vertical extent is 9953 * 0.000941698 = 9.3727 degrees.
- Sure enough, the horizontal extent from -109.903 to -93.7969 degrees is 16.1661 and the vertical extent from 40.0558 to 49.4285 is 9.3727 degrees.
- 0.000942 degrees is 3.39 arc-seconds, consistent with a grid that is nominally either at 3 arc-seconds or 100 meters resolution. (A grid in decimal degrees cannot have a constant resolution due to curvature, so approximate equivalence is ok here.)
I don't know what's going on, but I do know that the information in these two screen shots is contradictory. That implies the problem occurs at the outset, before you have even done any conversion, and may be related to the values reported in the first of the five screen shots.
I should also point out that adding 100 to cell values in an eight-bit grid can cause unexpected results, unless you are truly expecting values to be calculated modulo 256. E.g., 243 + 100 = 87. (343 cannot even be represented as an eight-bit integer.) In fact, because this clearly is a categorical grid, adding 100 to the values has no intrinsic meaning. (Which is not to say that the addition operation is nonsensical: it could be needed, for example, to convert one internal coding of the categories into another. But be careful!)
The image file there actually has dimensions 39902, 32521, is projected, ...you must have performed some preliminary processing that you did not describe (I suspect you unprojected it), and during that processing you resampled the image to a larger cell size. The resampling would not have changed any attribute values, including the [count] field: that's why there appears to be a discrepancy. In short, the Raster Calculator has done nothing wrong.