Vendor charging the same item on multiple invoices and I need assistance

architectdon

New Member
Joined
Jun 26, 2018
Messages
1
I have a vendor that is billing invoices, and overtime has billed hours multiple times. How can I show the item and hours for each invoice to show a running total?
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
With Item in column A and hours in column B, put this in C2 copy down
=SUMIF(A$2:A$1000,A2,B$2:B$1000)

To make the total only appear against the first for each item, use this instead
=IF(COUNTIF(A$2:A2,A2)=1,SUMIF(A$2:A$1000,A2,B$2:B$1000),"")


Something to take account of - you have not told us how the "hours" are recorded
- above code assumes that hours are in decimal form 1.25 (ie 1 hour 15 miniutes)
- if that is not the case then the formula needs adjusting to get the calculations correct
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,852
Members
449,096
Latest member
Erald

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