Unfortunately I have never had much success getting Excel to admit tha
two numbers, albeit look-alike-numbers, were equal.
To attempt the same with 3 variations for Cross-Checking purposes coul
be difficult.
(the three variations being the total of the vertical sub-totals, th
total of the horizontal sub-totals, and the total altogethe
sum(A1

10) etc)
Assuming A1 to D10 contained data, totalled vertically at A11 to D11
and horizontally at E1 to E10
My current balance sheet effort resorts to testing as equal the Intege
of the numbers, as
=IF(INT(G71)=INT(G72),"ok","An error was detected")
which for cross-checking could replace G71 with sum(A11

11) an
replace G72 with sum(E1:E10) to check data in A1 to D10, or you coul
try
=IF(INT(sum(A11

11))=INT(sum(A1

10)),"ok","An error was detected")
Hope this help