Excel Table sums

ads_1471

Board Regular
Joined
Apr 19, 2016
Messages
58
Hi All

I have a table set up where within this I have I am looking to multiply the amount of hours by rates in £.

Example Table is from A to R. However looking for the table in R to multiply 2 columns.

Colum G has the amount of hours and column O has the amount in £.

I have tried the SUM formula which works on a normal workbook but on the table instead of it resulting in £30 say for 2 hours x £15 it comes in with £1.25

Column G format is customer HH:MM and Col O is currency £.

Thanks
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
That is because time is stored in Excel as a fraction, specifically the fractional piece of one day.
So, 2 hours would be equal to 2/24, since there are 24 hours in a day.
So if you want to say it is an hourly rate, multiply your result by 24 to get your desired result, i.e.
Excel Formula:
24 * 1.25 = 60
which is the result you desire (30 *2 = 60)

So your formula would look something like:
Excel Formula:
=G2 * O2 * 24
 
Upvote 0

Forum statistics

Threads
1,216,153
Messages
6,129,172
Members
449,490
Latest member
TheSliink

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top