Count Duplicate Values of a Certain Cell in a Table but Only Count for One Instance in a Certain Range Within Table

psmi123

New Member
Joined
Jul 10, 2018
Messages
16
Lets use C2.2 in Cell C2 for an example . I know how to count the number of occurrences of a certain cell within a table. However I want to be able to exclude the count of duplicate within a zone. In the table C2.2 appears 4 times. However I want to exclude duplicates within the zones and only have it count once per zone. Another example: C.4 occurs 4 times in the table but 3 of those occurrences are within zone 5 of ice cream therefore I only want it to be counted once within Zone 5, therefore i want the total number occurrences of C.4 to be 2. I am going to fill out F2:H9 on what value is supposed to shown. But I need to know how to do this without counting manually, any advice would be greatly appreciated. The Data set I am using is very large and it would take too long to count manually and I want the file to update itself.


SectorZoneCode 1Code 2Code 3Code 1 OccurrencesCode 2 OccurrencesCode 3 Occurrences
Ice Cream1C2.2C.4C3.5323
Ice Cream1C2.2C3.5R4.7332
Ice Cream2C2.2F3.4U7.9343
Ice Cream3C3.5F3.4U7.9343
Ice Cream4F3.4U7.9R4.7432
Ice Cream5C2.2C.4C3.5323
Ice Cream5C2.2C.4F3.4324
Ice Cream5C3.5C.4F3.4324

<tbody>
</tbody>

Thank you in advance for the help! :)
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try

Array formula in F2 copied across and down
=SUM(IF(FREQUENCY(IF(MMULT(--($C$2:$E$9=C2),{1;1;1})>0,MATCH($B$2:$B$9,$B$2:$B$9,0)),ROW($B$2:$B$9)-ROW($B$2)+1),1))
confirmed with Ctrl+Shift+Enter, not just Enter

M.
 
Last edited:
Upvote 0
This works! However, what if there are multiple sectors and I only want the codes counted within the sector as well, how would I do that? Also do you mind explaining the formula? So i can translate it to the bigger file?
 
Upvote 0
To handle multiple sectors we need to add a new criteria (column A)

A
B
C
D
E
F
G
H
1
Sector​
Zone​
Code 1​
Code 2​
Code 3​
Code 1 Occurrences​
Code 2 Occurrences​
Code 3 Occurrences​
2
Ice Cream​
1​
C2.2​
C.4​
C3.5​
3​
2​
3​
3
Ice Cream​
1​
C2.2​
C3.5​
R4.7​
3​
3​
2​
4
Ice Cream​
2​
C2.2​
F3.4​
U7.9​
3​
4​
3​
5
Ice Cream​
3​
C3.5​
F3.4​
U7.9​
3​
4​
3​
6
Ice Cream​
4​
F3.4​
U7.9​
R4.7​
4​
3​
2​
7
Ice Cream​
5​
C2.2​
C.4​
C3.5​
3​
2​
3​
8
Ice Cream​
5​
C2.2​
C.4​
F3.4​
3​
2​
4​
9
Ice Cream​
5​
C3.5​
C.4​
F3.4​
3​
2​
4​
10
xxxx​
1​
C2.2​
C.4​
C3.5​
2​
1​
2​
11
xxxx​
1​
C2.2​
C3.5​
R4.7​
2​
2​
1​
12
xxxx​
2​
C2.2​
F3.4​
U7.9​
2​
2​
2​
13
xxxx​
3​
C3.5​
F3.4​
U7.9​
2​
2​
2​

Array formula in F2 copied across and down
=SUM(IF(FREQUENCY(IF($A$2:$A$13=$A2,IF(MMULT(--($C$2:$E$13=C2),{1;1;1})>0,MATCH($B$2:$B$13,$B$2:$B$13,0))),ROW($B$2:$B$13)-ROW($B$2)+1),1))
Ctrl+Shift+Enter

To understand what the formula does, step by step, try Formulas > Evaluate formula

M.
 
Upvote 0
So its working in the sample problem but I cant translate it to my file.

=SUM(IF(FREQUENCY(IF($A$2:$A$13=$A2,IF(MMULT(--($C$2:$E$13=C2),{1;1;1})>0,MATCH($B$2:$B$13,$B$2:$B$13,0))),ROW($B$2:$B$13)-ROW($B$2)+1),1))

I tried to evaluate it but its not making sense, could u please explain to me the part of the formula thats in red?
 
Upvote 0
The formula is a bit complicated and difficult to explain. To understand it, you must know how to use the FREQUENCY function to count without duplicates (count unique).

In this case, it is necessary to consider two criteria, i.e.: same sector - which is verified by $A$2:$A$13=$A2; and on which rows the value in C2 is present - which is tested by MMULT(--($C$2:$E$13=C2),{1;1;1})>0

Could you show us a sample of data that represents your real scenario? So I could try to adapt the formula.

M.
 
Last edited:
Upvote 0
That makes sense! Below is a better sample of the data

2 More questions as well if you don't mind answering:

1.) What does {1;1;1})>0 mean? Could you please explain to me what ROW($B$2:$B$13)-ROW($B$2)+1),1)) is doing?

2.) For -ROW($B$2)+1),1)) what is the subtracting doing? Also why would $B$2 stay the same if its only referencing one cell the time? Would it make more sense to remove the $ before the 2? and what is the function of that plus one?

Thank you so much for your help, it is greatly appreciated!



SectorZoneColumn CColumn DColumn EColumn FColumn GColumn HColumn ICode 1Code 2Code 3Code 4Code 5Code 6Code 7Code 8Code 9Code 10Code 11Code 12Code 13Code 14Code 15Code 16Code 17Code 18Code 19Code 20Code 21Code 1 OccurrenceCode 2 OccurrenceCode 3 OccurrenceCode 4 OccurrenceCode 5 OccurrenceCode 6 OccurrenceCode 7 OccurrenceCode 8 OccurrenceCode 9 OccurrenceCode 10 OccurrenceCode 11 OccurrenceCode 12 OccurrenceCode 13 OccurrenceCode 14 OccurrenceCode 15 OccurrenceCode 16 OccurrenceCode 17 OccurrenceCode 18 OccurrenceCode 19 OccurrenceCode 20 OccurrenceCode 21 Occurrence
Unnamed16Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant Info---------------------
Unnamed36Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant Info---------------------
Unnamed38Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant Info---------------------
Unnamed48Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant Info---------------------
Unnamed50Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant Info---------------------
Ice Cream2Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant Info----U1.13.2.0.0.0U1.0.0.0.0.0---------------
Ice Cream5Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.18.1.0.0.0U1.18.3.0.0.0U1.18.0.0.0.0U1.18.4.0.0.0U1.18.0.0.0.0U1.18.0.0.0.0G3.3.0.0.0.0U1.18.0.0.0.0U1.15.0.0.0.0U1.1.0.0.0.0-----------
Ice Cream6Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.18.4.0.0.0U1.15.1.0.0.0U1.2.5.0.0.0U1.15.2.0.0.0U1.15.3.0.0.0U1.9.0.0.0.0U1.2.0.0.0.0--------------
Ice Cream8Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.1.7.0.0.0U1.16.0.0.0.0U1.1.0.0.0.0U1.1.0.0.0.0U1.13.1.0.0.0U1.16.3.0.0.0U1.16.1.0.0.0U1.2.5.0.0.0TBD------------
Ice Cream9Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.10.0.0.0.0U1.10.0.0.0.0U1.10.3.0.0.0U1.10.4.0.0.0U1.2.0.0.0.0U1.20.0.0.0.0U1.13.2.0.0.0--------------
Ice Cream10Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.4.0.0.0.0U1.2.0.0.0.0U1.18.4.0.0.0U1.9.0.0.0.0U1.20.0.0.0.0U1.1.0.0.0.0---------------
Ice Cream12Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.18.0.0.0.0TBDTBDTBDTBDTBDTBDTBDTBDTBDTBD----------
Ice Cream13Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.21.7.0.0.0U1.21.7.0.0.0U1.21.7.0.0.0U1.21.7.0.0.0U1.21.7.0.0.0U1.21.7.0.0.0G4.1.0.0.0.0U1.18.0.0.0.0U1.21.3.0.0.0U1.4.0.0.0.0U1.2.0.0.0.0U1.5.0.0.0.0---------
Ice Cream15Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.18.0.0.0.0U1.15.2.0.0.0U1.0.0.0.0.0U1.8.0.0.0.0G5.4.1.0.0.0U1.18.4.0.0.0U1.2.1.0.0.0G4.3.0.0.0.0-------------
Ice Cream17Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.3.0.0.0.0G1.3.0.0.0.0G1.8.4.0.0.0G1.10.0.0.0.0G1.9.0.0.0.0----------------
Ice Cream17Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.2.0.0.0.0G1.3.0.0.0.0U1.12.0.0.0.0G1.3.3.0.0.0G1.10.0.0.0.0G1.9.0.0.0.0G1.15.2.0.0.0G4.2.0.0.0.0U1.2.1.0.0.0------------
Ice Cream17Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.2.0.0.0.0G1.3.0.0.0.0U1.12.0.0.0.0G1.4.0.0.0.0G1.1.0.0.0.0G1.3.3.0.0.0G1.8.1.0.0.0G1.8.2.0.0.0G1.8.3.0.0.0G1.8.4.0.0.0G1.10.0.0.0.0G1.9.0.0.0.0G1.6.0.0.0.0G1.15.2.0.0.0G1.11.0.0.0.0G1.13.0.0.0.0G4.2.0.0.0.0U1.2.1.0.0.0---
Ice Cream18Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBDTBDTBDTBDTBD----------------
Ice Cream21Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBD--------------------
Ice Cream27Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.3.0.0.0.0G1.15.1.0.0.0G5.1.5.0.0.0G1.13.0.0.0.0G4.2.5.0.0.0U1.4.0.0.0.0U1.2.0.0.0.0--------------
Ice Cream27Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.3.0.0.0.0G1.15.1.0.0.0G5.1.5.0.0.0G4.2.5.0.0.0U1.4.0.0.0.0U1.2.0.0.0.0---------------
Ice Cream27Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.3.0.0.0.0G1.15.1.0.0.0G5.1.5.0.0.0G1.13.0.0.0.0G4.2.5.0.0.0U1.4.0.0.0.0U1.2.0.0.0.0--------------
Ice Cream27Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.3.0.0.0.0G1.15.1.0.0.0G5.1.5.0.0.0G1.13.0.0.0.0G4.2.5.0.0.0U1.4.0.0.0.0U1.2.0.0.0.0--------------
Ice Cream28Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.3.3.0.0.0G4.2.0.0.0.0G5.1.2.1G5.1.2.2.0.0U1.11.5.0.0.0G7.3.0.0.0.0---------------
Ice Cream29Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBD--------------------
Ice Cream30Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.20.1.0.0.0U1.20.2.0.0.0U1.20.3.0.0.0U1.20.4.0.0.0U1.20.0.0.0.0N/AU1.10.3.0.0.0U1.2.0.0.0.0U1.20.4.0.0.0------------
Ice Cream31Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.0.0.0.0.0U1.2.0.0.0.0U1.9.3.0.0.0U1.9.6.0.0.0U1.9.5.0.0.0U1.9.6.0.0.0U1.9.6.0.0.0--------------
Ice Cream33Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG5.4.1.0.0.0G5.4.5.0.0.0G5.4.4.0.0.0G5.5.0.0.0.0G5.4.3.0.0.0U1.2.0.0.0.0U1.11.5.0.0.0--------------
Ice Cream35Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBD--------------------
Ice Cream37Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG5.1.1.0.0.0G5.1.3.0.0.0G5.1.2.0.0.0G5.1.4.0.0.0G5.1.3.2.0.0G5.1.3.3.0.0G5.1.3.1.0.0U1.17.2.0.0.0U1.2.0.0.0.0U1.11.0.0.0.0-----------
Ice Cream37Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG5.1.1.0.0.0G5.1.2.0.0.0G5.1.4.0.0.0U1.17.2.0.0.0U1.11.0.0.0.0----------------
Ice Cream37Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG5.1.1.0.0.0G5.1.3.0.0.0G5.1.2.0.0.0G5.1.4.0.0.0G5.1.3.2.0.0G5.1.3.3.0.0G5.1.3.1.0.0U1.17.2.0.0.0U1.2.0.0.0.0U1.11.0.0.0.0-----------
Ice Cream39Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBD--------------------
Ice Cream40Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoN/AG5.4.4.2.0.0G5.4.4.1.0.0U1.11.3.0.0.0G5.3.1.0.0.0G5.3.2.0.0.0G5.5.0.0.0.0U1.2.0.0.0.0U1.11.0.0.0.0------------
Ice Cream41Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBD--------------------
Ice Cream42Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBD--------------------
Ice Cream43Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG7.2.1.0.0.0G7.2.2.0.0.0G7.2.3.0.0.0G7.2.4.0.0.0G5.4.7.1.0.0G5.1.4.0.0.0G5.4.7.2.0.0G7.3.4.0.0.0U1.16.3.0.0.0------------
Ice Cream44Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBD--------------------
Ice Cream44Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBD--------------------
Ice Cream45Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.18.0.0.0.0U1.2.0.0.0.0U1.12.BU1.16.3.0.0.0U1.9.0.0.0.0U1.13.2.0.0.0U1.14.0.0.0.0U1.16.1.0.0.0U1.1.0.0.0.0------------
Ice Cream46Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.19.0.0.0.0G5.4.2.0.0.0U1.19.0.0.0.0G5.4.0.0.0.0U1.9.0.0.0.0U1.9.6.0.0.0U1.2.1.4.0.0U1.12.0.0.0.0U1.0.0.0.0.0------------
Ice Cream47Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.19.0.0.0.0U1.19.0.0.0.0U1.19.0.0.0.0U1.19.0.0.0.0U1.10.0.0.0.0U1.2.1.4.0.0.0U1.0.0.0.0.0--------------
Frozen Yogurt7Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.17.1.4.0.0U1.17.1.3.0.0U1.2.0.0.0.0U1.17.2.1.0.0-----------------
Frozen Yogurt15Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.18.0.0.0.0U1.15.2.0.0.0U1.0.0.0.0.0U1.8.0.0.0.0G5.4.1.0.0.0U1.18.4.0.0.0U1.2.1.0.0.0G4.3.0.0.0.0-------------
Frozen Yogurt6Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.18.4.0.0.0U1.15.1.0.0.0U1.2.5.0.0.0U1.15.2.0.0.0U1.15.3.0.0.0U1.16.1.0.0.0U1.16.0.0.0.0U1.9.0.0.0.0U1.2.0.0.0.0TBD-----------
Frozen Yogurt46Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoU1.19.0.0.0.0G5.4.2.0.0.0U1.19.0.0.0.0G5.4.0.0.0.0U1.9.0.0.0.0U1.9.6.0.0.0U1.2.1.4.0.0U1.12.0.0.0.0U1.0.0.0.0.0------------
Frozen Yogurt29Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoTBD--------------------
Frozen Yogurt17Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.2.0.0.0.0G1.3.0.0.0.0U1.12.0.0.0.0G1.8.3.0.0.0G1.10.0.0.0.0G1.9.0.0.0.0G1.15.2.0.0.0G1.13.0.0.0.0G4.2.0.0.0.0U1.2.1.0.0.0-----------
Frozen Yogurt17Non Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoNon Relevant InfoG1.2.0.0.0.0G1.3.0.0.0.0U1.12.0.0.0.0G1.8.3.0.0.0G1.10.0.0.0.0G1.9.0.0.0.0G1.15.2.0.0.0G4.2.0.0.0.0U1.2.1.0.0.0------------

<colgroup><col><col><col span="2"><col><col span="4"><col><col span="4"><col><col span="2"><col><col><col><col span="2"><col><col><col><col><col><col><col><col><col><col span="8"><col><col><col span="8"><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
{1;1;1} is used as the second argument of MMULT to generate an array with one column. The vertical array, resultant of MMULT, will contain 1 for those rows that contain the code in question and 0 for the rows that do not contain the code in question. For this reason the formula uses MMULT(....)>0 to identify the rows that contain the code in question.

I used a vertical array with 3 elements because there are 3 columns with codes (columns C to E). With four columns with codes you should use, as the second argument of MMULT, a vertical array with 4 elements {1;1;1;1}. With 5 columns an array with 5 elements, and so on.

ROW($B$2:$B$13)-ROW($B$2)+1 generates a vertical array like
{1;2;3;4;5;6;7;8;9;10;11;12;13}

I'm noticing that you're not familiar with this type of formula. So to have a chance to understand the formula and to begin with, I recommend you watch this video (long, but excellent explanation of how to use the FREQUENCY function to count unique)
https://www.youtube.com/watch?v=uUrI8hoj8BA

M.
 
Last edited:
Upvote 0
All I had to do was change the array to fit my range! Thank you so much for your help, and I will watch that video!
 
Upvote 0
So I'm currently watching the video and I'm only confused on SUM(IF(FREQUENCY(IF($A$2:$A$13=$A2,IF(MMULT(--($C$2:$E$13=C2),{1;1;1})>0,MATCH($B$2:$B$13,$B$2:$B$13,0))),ROW($B$2:$B$13)-ROW($B$2)+1),1))

I still don't understand why there would be a $ in front of the 2? Wouldn't they all just be pulling from the same zone? He didn't really go too in depth with that part so I'm still trying to understand it.

Thank you!

-P
 
Upvote 0

Forum statistics

Threads
1,215,967
Messages
6,127,980
Members
449,414
Latest member
sameri

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