Even formatting cells in a Excel spreadsheet, you can take the number of decimal places way out there, or limit them to zero (round the whole numbers off). It's all in how you format the cell.
While the latter might occasionally display minor errors (+/- 1) it will at least be whole numbers. . . .
This isn't a matter on how a number is displayed. It is a matter on how the numbers are stored. I wish I had a screenshot to show you what I saw. There was one posted on the old Georgia 2020 election thread, but that has long disappeared.
Anyway, back to the numbers. Yes, you can tell Excel how to display (format) a cell's contents. But Excel uses floats for everything. This changes how numbers are stored.
Let's say you wanted to store the number '11'. For a long (32-bit) unsigned integer, it would read:
0000 0000 0000 0000 0000 0000 0000 1011But for a 32-bit float, it would read:
0 10000010 01100000000000000000000First digit = sign (+/-) Teal digits = Exponent. Maroon digits = Mantissa
Both numbers above represent 11. But both are stored differently. Excel uses only the second, then lies to you by rounding the display to whatever you tell it. But it still keeps all those extra zeroes (11.0000000.......) in storage.
In any programming, you get to declare your variables (e.g. bool, character string, whole number (16-bit unsigned integer), signed integer (16-bit), long integer (32-bit), double integer (64-bit), etc.). Vote tallies should be stored as long integers because there is never ever ever a case where there would be need for a fraction of a vote. With whole numbers only, one never has need for exponent/mantissa format. Yet Dominion uses floating point numbers. And not only do they use them, but their software logged them in their connection to media outlets on election night with their periodic ticker reports.
btw, these are the same ticker reports where we saw Trump totals go down in some States as time passed. Again, not possible.
I hope that clarifies.