Forum Discussion
Excel VLookup returns incorrect row
Could you attach a small sample workbook demonstrating the problem (without sensitive data), or if that is not possible, make it available through OneDrive, Google Drive, Dropbox or similar?
HansVogelaar Under sheet 2023, "Take Home Pay", referances the table on 2023rates sheet.
- HansVogelaarSep 26, 2022MVP
It is a rounding problem. The times in column E are stored as fractions, and Excel cannot represent most fractions completely accurately. Hence the sum can deviate from the 'true' value by a tiny amount.
Since the first column on the 2023rates sheet increased in steps of 0.5, you can avoid the problem by rounding the sum in column I to 1 decimal place:
=ROUND(SUM(E2:E14)*24,1)
Alternatively:
=SUM(24*TEXT(E2:E14,"h:mm"))
- CWKotchSep 26, 2022Copper ContributorIt works fine, however I'm finding that the total hours worked in column E , for example, if hours worked are 11:45 hours, it make it 11:80?
- HansVogelaarSep 26, 2022MVP
Column E contains values in time format h:mm, but column I contains decimal hours.
- CWKotchSep 26, 2022Copper ContributorPerfect! WOrks like the proverbial charm. Thank you very much.
Chris