A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Right click on H34 > Format Cells > Increase the Decimals to 20
Now you will see that the value is not 0.01 but 0.00999999.....
That is the reason why it is not matching with 0.01
This is not your issue. This is called Floating Point Error (happens with all IT Systems)
Refer to following. The solution as described in second link is to use ROUND function.
http://support.microsoft.com/kb/78113/en-us
http://blogs.office.com/2008/04/10/understandin...
Hence, you will need to use following formula
=IF(ROUND(H34,2)=J26,"OK","?")