xxsalahxx

Active Member
Joined
Jun 25, 2011
Messages
316
Office Version
  1. 2007
Hello im wondering if anyone can help me out with the formula below?
Im trying to count the number of times a number is recorded in column A that has duplicate numbers this part is working, however I also need to count if column H is showing a blank field

=COUNT(IF(FREQUENCY('3a6'!A2:A1000,'3a6'!A2:A1000),'3a6'!A2:A1000)*('3a6'!H2:H1000=""))

My formula does not seen to be working and any help would be appreciated
Thank you
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
=SUM(IF(FREQUENCY('3a6'!A2:A1000,'3a6'!A2:A1000),1))

returns the number of unique numbers from '3a6'!A2:A1000.

=SUM(IF(FREQUENCY('3a6'!A2:A1000,'3a6'!A2:A1000)>1,1))

returns the number of unique numbers with duplicate occurrences from '3a6'!A2:A1000 (e.g., if 0.2 occurs once in '3a6'!A2:A1000, it's not counted.

=SUM(IF(FREQUENCY(IF('3a6'!H2:H1000="",'3a6'!A2:A1000),'3a6'!A2:A1000),1))

delivers the count of unique numbers which correspond to a blank in the H range.

=SUM(IF(FREQUENCY(IF('3a6'!H2:H1000="",'3a6'!A2:A1000),'3a6'!A2:A1000)>1,1))

delivers the count of unique numbers with occurrence > 1 and which correspond to a blank in the H range.
 
Upvote 0
Thank you so much im sure its all working now.



=SUM(IF(FREQUENCY('3a6'!A2:A1000,'3a6'!A2:A1000),1))

returns the number of unique numbers from '3a6'!A2:A1000.

=SUM(IF(FREQUENCY('3a6'!A2:A1000,'3a6'!A2:A1000)>1,1))

returns the number of unique numbers with duplicate occurrences from '3a6'!A2:A1000 (e.g., if 0.2 occurs once in '3a6'!A2:A1000, it's not counted.

=SUM(IF(FREQUENCY(IF('3a6'!H2:H1000="",'3a6'!A2:A1000),'3a6'!A2:A1000),1))

delivers the count of unique numbers which correspond to a blank in the H range.

=SUM(IF(FREQUENCY(IF('3a6'!H2:H1000="",'3a6'!A2:A1000),'3a6'!A2:A1000)>1,1))

delivers the count of unique numbers with occurrence > 1 and which correspond to a blank in the H range.
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,031
Members
448,940
Latest member
mdusw

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