daleholden
Board Regular
- Joined
- Sep 22, 2002
- Messages
- 243
If you Custom Format the cell using this Type pattern, you will see the number of hours over 24...
[h]:mm
Sorry, I misunderstood... I didn't download your file, I only looked at your picture. If I understand correctly, you want to retrieve the total number of hours. If that is correct, you could use this formula...Hi Rick still does not help my formula in E21 i have 23 hours which should equal to PHP 2300 but it says PHP 96
Sorry, I misunderstood... I didn't download your file, I only looked at your picture. If I understand correctly, you want to retrieve the total number of hours. If that is correct, you could use this formula...
=TEXT(E21,"[h]")
I am still not clear on your actual need here, but let me take a guess. If you want the SUM formula in cell E19 (which I am guessing is summing a set of individual time values) to report the whole number of hours, then change it to this...HI E5 - E18 has a IF formula working out the hours worked. E19 adds these up =SUM(E5:E18) but i need the result to be a solid number so not 9:00 but 9. This is because E21 has a sum e20 x e19
It currently is working this out wrong
I am still not clear on your actual need here, but let me take a guess. If you want the SUM formula in cell E19 (which I am guessing is summing a set of individual time values) to report the whole number of hours, then change it to this...
=TEXT(SUM(E5:E18),"[h]")
The key here is for you to put whatever has or is returning the time value in for what I have highlighted in red.