SUM Help? PLEASE

HotNumbers

Well-known Member
Joined
Feb 14, 2005
Messages
732
I know this is a silly question but i need some help or some IDEAS? PLEASE

I have the issues where a user will fill in a table with data..
Column A is Invoice number
Column B is Invoice Total
Column C is should be THE total of Column C but if it doesn't total the same then next to it should be flagged with not total or something like it.

The total should be based on the INVOICE no...


I hope this make sense... Below is my example



Excel 2010
BCDE
1Invoice No.Invoice TotalAmount for Split AllocationAmount Check
2aaa$ 100.00$ 10.00
3aaa$ 10.00
4aaa$ 80.00
5bb$ 10.00$ 1.00
6bb$ 9.00
7ccc$ 125.00$ 5.00
8ccc$ 2.00
9ccc$ 6.00
10ccc$ 25.00
11ccc$ 32.00
12ccc$ 2.00
ZAP upload xlsx format
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Code:
=IF($B3="",$D2+$C3,$C3)

That will work for a quick visual check...but that's as much as I've got.


Code:
=IF($B3<>"",SUMIFS($C:$C,$A:$A,$A3),"")

Duh...after posting I realized this. This should show you the value. If you want it to only show if it's different, add another if function!

Code:
=IF(IF($B13<>"",SUMIFS($C:$C,$A:$A,$A13),"")=$B13,"",IF($B13<>"",SUMIFS($C:$C,$A:$A,$A13),""))
 
Upvote 0
Here's another similar option:

=IF(SUMIF($A$2:$A$1000,A2,$C$2:$C$1000)<>INDEX($A$2:$B$1000,MATCH(A2,$A$2:$A$1000,0),2),"Check this one","")
 
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,520
Members
449,088
Latest member
RandomExceller01

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