Queries of countifs or other excel functions that may help my work

bestrong_ting

New Member
Joined
Nov 16, 2016
Messages
1
Hello Everyone.
I have some questions to ask.
I have two lists to compare, which is the report list and payment list.
I have to find which amount is omitted in the report list from the payment list.
In my example, payment of member 0009 and 0020 of $30 and $70 respectively are omitted.
I used to use the =countif()>0 function but then I found that $30 and $70 are not unique values for counting and lookup.
I know the countifs function may help but I do not know how to set up.
May somebody help me to set up functions to lookip thousands of records omitted in the report list?

[TABLE="class: grid, width: 606, align: center"]
<tbody>[TR]
[TD]A1
[/TD]
[TD]B
[/TD]
[TD]C
[/TD]
[TD]D
[/TD]
[TD]E
[/TD]
[TD]F
[/TD]
[TD]G
[/TD]
[TD]H
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]Report List
[/TD]
[TD][/TD]
[TD][/TD]
[TD="colspan: 2"]Payment List
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]Membership No.
[/TD]
[TD]Amount
[/TD]
[TD][/TD]
[TD]Membership No.
[/TD]
[TD]Amount
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4
[/TD]
[TD]0003
[/TD]
[TD]20
[/TD]
[TD][/TD]
[TD]0003
[/TD]
[TD]20
[/TD]
[TD][/TD]
[TD]=COUNTIF($C$4:$C$9,F4)>0
[/TD]
[TD]TRUE
[/TD]
[/TR]
[TR]
[TD]5
[/TD]
[TD]0002
[/TD]
[TD]30
[/TD]
[TD][/TD]
[TD]0002
[/TD]
[TD]30
[/TD]
[TD][/TD]
[TD]=COUNTIF($C$4:$C$9,F5)>0
[/TD]
[TD]TRUE
[/TD]
[/TR]
[TR]
[TD]6
[/TD]
[TD]0003
[/TD]
[TD]70
[/TD]
[TD][/TD]
[TD]0003
[/TD]
[TD]70
[/TD]
[TD][/TD]
[TD]=COUNTIF($C$4:$C$9,F6)>0
[/TD]
[TD]TRUE
[/TD]
[/TR]
[TR]
[TD]7
[/TD]
[TD]0004
[/TD]
[TD]90
[/TD]
[TD][/TD]
[TD]0004
[/TD]
[TD]90
[/TD]
[TD][/TD]
[TD]=COUNTIF($C$4:$C$9,F7)>0
[/TD]
[TD]TRUE
[/TD]
[/TR]
[TR]
[TD]8
[/TD]
[TD]0015
[/TD]
[TD]200
[/TD]
[TD][/TD]
[TD]0009
[/TD]
[TD]30
[/TD]
[TD][/TD]
[TD]=COUNTIF($C$4:$C$9,F8)>0
[/TD]
[TD]TRUE
[/TD]
[/TR]
[TR]
[TD]9
[/TD]
[TD]0034
[/TD]
[TD]700
[/TD]
[TD][/TD]
[TD]0015
[/TD]
[TD]200
[/TD]
[TD][/TD]
[TD]=COUNTIF($C$4:$C$9,F9)>0
[/TD]
[TD]TRUE
[/TD]
[/TR]
[TR]
[TD]10
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]0020
[/TD]
[TD]70
[/TD]
[TD][/TD]
[TD]=COUNTIF($C$4:$C$9,F10)>0
[/TD]
[TD]TRUE
[/TD]
[/TR]
[TR]
[TD]11
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]0034
[/TD]
[TD]700
[/TD]
[TD][/TD]
[TD]=COUNTIF($C$4:$C$9,F11)>0
[/TD]
[TD]TRUE
[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Put the following formula in cell H4 and copy down:

=IF(COUNTIFS(B:B,E4,C:C,F4)=0,"Omitted","")
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,254
Members
452,623
Latest member
Techenthusiast

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