Excel Formula/VBA-Conditional Sum to find contra from multiple entries

Miratshah

Board Regular
Joined
Nov 29, 2016
Messages
57
Hi Experts,

I have a sheet which runs into over 30000 rows. I need to find contra entries within a company in column B for a each job in column C. Basically I need to find which transactions sum to 0 in column K (Balance in Base). so for example, in company code IN9073 in column B, there are 30 transactions which sum to 3,000 in column K (Balance in base). I have manually identified whether in each transaction is contra on not in column L (Marker2). If a particular transaction is not summing to 0, I have marked it as WIP.

The problem is there can be transaction with amount + and - which can be identified AND transactions where different amounts with different signs sum to 0.

I need this to be achieved by way of some formula or VBA. I tried sumifs but failed when there are 10 transactions out of which 8 are contra and 2 are not.

The HTML of my excel is below,

P.s. Rounding off to 1 or 2 is completely allowed :)

Thanks in advance.



Book1
ABCDEFGHIJKL
1Company No.Company CodeJob No.Account No.Trans. No.Journal No.Date PostedEntry DateDebitsCreditsBalance in BaseManual
58110IN9073110695711600511012100111014223830/11/201030/11/20101,000.000.001,000CONTRA
59110IN9073110695711600511012100111014223830/11/201030/11/20102,000.000.002,000CONTRA
60110IN9073110695711600511015472411013261731/03/201029/03/20100.0038,500.00-38,500CONTRA
61110IN9073110695711600511076457711013045308/02/201008/02/20101,000.000.001,000CONTRA
62110IN9073110695711600511076458511013046208/02/201008/02/20101,000.000.001,000CONTRA
63110IN9073110695711600511076461611013049408/02/201008/02/20101,000.000.001,000CONTRA
64110IN9073110695711600511076464011013052408/02/201008/02/20101,000.000.001,000CONTRA
65110IN9073110695711600511076468511013057809/02/201009/02/20101,000.000.001,000CONTRA
66110IN9073110695711600511076472011013062710/02/201010/02/20101,000.000.001,000CONTRA
67110IN9073110695711600511076490511013104322/02/201022/02/20101,000.000.001,000CONTRA
68110IN9073110695711600511076491011013105722/02/201022/02/201012,500.000.0012,500CONTRA
69110IN9073110695711600511076511911013157805/03/201005/03/20101,000.000.001,000CONTRA
70110IN9073110695711600511076523211013179413/03/201013/03/20101,000.000.001,000CONTRA
71110IN9073110695711600511076528811013185013/03/201013/03/20102,000.000.002,000CONTRA
72110IN9073110695711600511076529211013185413/03/201013/03/20103,000.000.003,000CONTRA
73110IN9073110695711600511076529411013185613/03/201013/03/20101,000.000.001,000CONTRA
74110IN9073110695711600511076530911013187113/03/201013/03/20101,000.000.001,000CONTRA
75110IN9073110695711600511076532011013188213/03/201013/03/20101,000.000.001,000CONTRA
76110IN9073110695711600511076534011013190213/03/201013/03/20101,000.000.001,000CONTRA
77110IN9073110695711600511076535511013191715/03/201015/03/20101,000.000.001,000CONTRA
78110IN9073110695711600511076539111013200516/03/201016/03/20101,000.000.001,000CONTRA
79110IN9073110695711600511076554311013229023/03/201023/03/20102,000.000.002,000CONTRA
80110IN9073110695711600511076554411013229123/03/201023/03/20102,000.000.002,000CONTRA
81110IN9073110695711600511076554611013229323/03/201023/03/20102,000.000.002,000CONTRA
82110IN9073110695711600511076640111013445121/05/201021/05/20100.001,000.00-1,000CONTRA
83110IN9073110695711600511076640211013445221/05/201021/05/20100.001,000.00-1,000CONTRA
84110IN9073110695711600511076640311013445421/05/201021/05/20100.001,000.00-1,000CONTRA
85110IN9073110695711603011071968411014101530/10/201028/10/20101,000.000.001,000WIP
86110IN9073110695711603011071968611014101530/10/201028/10/20101,000.000.001,000WIP
87110IN9073110695711603011071968811014101530/10/201028/10/20101,000.000.001,000WIP
Sheet1
 
Last edited:
I don't know.
I'm not a code expert and I have not used Solver very much.

There are threads on this board which address similar problems, about having some number of transactions and having to net some of them off against each other.
Try searching for them.
 
Upvote 0

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Hi, Miratshah
Question:
1. Your data in column K, are they double type/decimal or just integer?
If they are decimal then I think it's hard to find a solution.

P.s. Rounding off to 1 or 2 is completely allowed
That's what bothers me.


2. If they are integer, how about simplifying the logic, like this:
Using your example in post #1 , we can easily find that for that particular company & job the subtotal in col K is 3000. Using vba, why not just looping in col K until we find some entry which subtotal is 3000, then mark those entries as "WIP" and the rest will be "CONTRA". If we loop from the top then we will mark row 58-59 as WIP or if we loop from the bottom we will mark row 85-87 as WIP.
 
Upvote 0
Hi, Miratshah
Question:
1. Your data in column K, are they double type/decimal or just integer?
If they are decimal then I think it's hard to find a solution.


That's what bothers me.


2. If they are integer, how about simplifying the logic, like this:
Using your example in post #1 , we can easily find that for that particular company & job the subtotal in col K is 3000. Using vba, why not just looping in col K until we find some entry which subtotal is 3000, then mark those entries as "WIP" and the rest will be "CONTRA". If we loop from the top then we will mark row 58-59 as WIP or if we loop from the bottom we will mark row 85-87 as WIP.

Hi Akuini,

What I can do is, before starting my work, I can convert all decimal to integer by using round off formula. This is not an issue.

I believe point 2 in your post is a wonderful idea. However, can the VBA you are suggesting work in loop for each company code by Job? Please note that amounts will not always be straight forward + or -.

I am now little optimistic that solution is not too far.

Thanks.
 
Last edited:
Upvote 0
Hi Akuini,
I believe point 2 in your post is a wonderful idea. However, can the VBA you are suggesting work in loop for each company code by Job? Please note that amounts will not always be straight forward + or -.
Thanks.

The Job No is unique for each company, right? I mean 1 company can have 2 or more Job No but 2 companies can’t have the same Job No, correct? For example: job no 1104229 is only for company IN9073
So is it correct to assume that the data grouping for each analysis can be based on Job No only?
 
Last edited:
Upvote 0
The Job No is unique for each company, right? I mean 1 company can have 2 or more Job No but 2 companies can’t have the same Job No, correct? For example: job no 1104229 is only for company IN9073
So is it correct to assume that the data grouping for each analysis can be based on Job No only?

Yes, It is safe to assume that the data grouping for each analysis can be based on Job number only.
 
Upvote 0
Ok, try this:
I use a mock-up data to test the code.
The code only marks the WPI, the blank means they are CONTRA.
In col M the code add the sub total of each data group.

Code:
[FONT=lucida console][color=Royalblue]Sub[/color] a1086996b()
[i][color=seagreen]'https://www.mrexcel.com/forum/excel-questions/1086996-excel-formula-vba-conditional-sum-find-contra-multiple-entries.html[/color][/i]
[color=Royalblue]Dim[/color] i [color=Royalblue]As[/color] [color=Royalblue]Long[/color], j [color=Royalblue]As[/color] [color=Royalblue]Long[/color], n [color=Royalblue]As[/color] [color=Royalblue]Long[/color]
[color=Royalblue]Dim[/color] x [color=Royalblue]As[/color] [color=Royalblue]Long[/color], k [color=Royalblue]As[/color] [color=Royalblue]Long[/color], z [color=Royalblue]As[/color] [color=Royalblue]Long[/color]
[color=Royalblue]Dim[/color] q [color=Royalblue]As[/color] [color=Royalblue]Long[/color]
[color=Royalblue]Dim[/color] va, vb, vc

Application.ScreenUpdating = [color=Royalblue]False[/color]
n = Range([color=brown]"C"[/color] & Rows.count).[color=Royalblue]End[/color](xlUp).Row
va = Range([color=brown]"C1:C"[/color] & n)
vb = Range([color=brown]"K1:K"[/color] & n)
[color=Royalblue]ReDim[/color] vc([color=crimson]1[/color] [color=Royalblue]To[/color] n, [color=crimson]1[/color] [color=Royalblue]To[/color] [color=crimson]2[/color])
Range([color=brown]"L1:M"[/color] & n).ClearContents

[color=Royalblue]For[/color] i = [color=crimson]2[/color] [color=Royalblue]To[/color] UBound(va, [color=crimson]1[/color])
    j = i:  x = [color=crimson]0[/color]
    
    [color=Royalblue]Do[/color]
        x = x + vb(i, [color=crimson]1[/color])
        i = i + [color=crimson]1[/color]
        [color=Royalblue]If[/color] i > UBound(va, [color=crimson]1[/color]) [color=Royalblue]Then[/color] [color=Royalblue]Exit[/color] [color=Royalblue]Do[/color]
    [color=Royalblue]Loop[/color] [color=Royalblue]While[/color] va(i, [color=crimson]1[/color]) = va(i - [color=crimson]1[/color], [color=crimson]1[/color])
        
    i = i - [color=crimson]1[/color]
    
    vc(i, [color=crimson]2[/color]) = x
    
    [color=Royalblue]If[/color] x = [color=crimson]0[/color] [color=Royalblue]Then[/color] [color=Royalblue]GoTo[/color] [color=Royalblue]skip[/color]:
    
       
    [color=Royalblue]If[/color] x < [color=crimson]0[/color] [color=Royalblue]Then[/color]
        [color=Royalblue]For[/color] k = j [color=Royalblue]To[/color] i
            vb(k, [color=crimson]1[/color]) = vb(k, [color=crimson]1[/color]) * -[color=crimson]1[/color]
        [color=Royalblue]Next[/color]
        x = x * -[color=crimson]1[/color]
    [color=Royalblue]End[/color] [color=Royalblue]If[/color]
    
    
            [color=Royalblue]For[/color] k = j [color=Royalblue]To[/color] i
            
                z = [color=crimson]0[/color]
                
                [color=Royalblue]For[/color] q = j [color=Royalblue]To[/color] k
                z = z + vb(q, [color=crimson]1[/color])
                [color=Royalblue]Next[/color]
                
                Debug.Print z
                    
                    [color=Royalblue]If[/color] z = x [color=Royalblue]Then[/color]
                        vc(k, [color=crimson]1[/color]) = [color=crimson]1[/color]: vc(k, [color=crimson]1[/color]) = [color=brown]"WPI"[/color]: [color=Royalblue]GoTo[/color] [color=Royalblue]skip[/color]:
                    [color=Royalblue]ElseIf[/color] z > x [color=Royalblue]Then[/color]
                        vb(k, [color=crimson]1[/color]) = [color=crimson]0[/color]
                    [color=Royalblue]Else[/color]
                        [color=Royalblue]If[/color] vb(k, [color=crimson]1[/color]) <= [color=crimson]0[/color] [color=Royalblue]Then[/color]
                            vb(k, [color=crimson]1[/color]) = [color=crimson]0[/color]
                        [color=Royalblue]Else[/color]
                            vc(k, [color=crimson]1[/color]) = [color=brown]"WPI"[/color]
                        [color=Royalblue]End[/color] [color=Royalblue]If[/color]
                    [color=Royalblue]End[/color] [color=Royalblue]If[/color]
                    
            [color=Royalblue]Next[/color]
        
[color=Royalblue]skip[/color]:

[color=Royalblue]Next[/color]

Range([color=brown]"L1"[/color]).Resize(UBound(vc, [color=crimson]1[/color]), [color=crimson]2[/color]) = vc
Range([color=brown]"L1"[/color]) = [color=brown]"Manual"[/color]

Application.ScreenUpdating = [color=Royalblue]True[/color]
[color=Royalblue]End[/color] [color=Royalblue]Sub[/color][/FONT]


RESULT:

Excel 2013 32 bit
A
B
C
D
E
F
G
H
I
J
K
L
M
1
Company No.Company CodeJob No.Account No.Trans. No.Journal No.Date PostedEntry DateDebitsCreditsBalance in BaseManual
2
AA
101​
1​
WPI
3
AA
101​
1​
WPI
4
AA
101​
-3​
5
AA
101​
2​
6
AA
101​
-1​
7
AA
101​
1​
WPI
8
AA
101​
2​
3​
9
AA
102​
-3​
10
AA
102​
1​
11
AA
102​
-1​
12
AA
102​
1​
13
AA
102​
-1​
14
AA
102​
1​
15
AA
102​
2​
0​
16
AD
302​
3​
WPI
17
AD
302​
1​
WPI
18
AD
302​
-1​
19
AD
302​
1​
20
AD
302​
-1​
21
AD
302​
1​
4​
22
AD
501​
2​
23
AD
501​
1​
24
AD
501​
-1​
WPI
25
AD
501​
1​
26
AD
501​
-2​
WPI
27
AD
501​
3​
28
AD
501​
1​
29
AD
501​
-1​
WPI
30
AD
501​
-3​
31
AD
501​
-5​
-4​
Sheet: Sheet1
 
Upvote 0
So I tried this code in a bigger sample. I am happy to report that it works for the most part however there are places where I found incorrect results. I sorted Job numbers in ascending order so that all job numbers are one after the other, this reduced number of errors for sure. However still there are few places with incorrect results. Column N is where manual contra & WIP are ploted against each transactions and column O is where I am comparing the result if VBA to manual. Sorry for the delay, unfortunately complete HTML was not getting uploaded hence reduced few rows.



Book1
ABCDEFGHIJKLMNO
1Company No.Company codeJob No.Account No.Trans. No.Journal No.Date PostedEntry DateDebitsCreditsBalance in BaseManualSumIFByJobManualPlottingCheck
28111821787.00WIPCONTRAFALSE
381118211,021.00WIPCONTRAFALSE
481118211,176.00WIPCONTRAFALSE
581118211,078.00WIPCONTRAFALSE
681118219,69,650.00CONTRAWIPFALSE
78111821-4,062.00CONTRA9,69,650.00CONTRATRUE
8811187618,136.00WIPWIPTRUE
981118761,50,000.00CONTRAWIPFALSE
1081118762,07,761.00CONTRAWIPFALSE
118111876-18,136.00CONTRACONTRATRUE
12811187618,136.00WIPCONTRAFALSE
138111876-1,25,181.00CONTRACONTRATRUE
148111876-1,50,000.00CONTRACONTRATRUE
1581118761,25,181.00CONTRACONTRATRUE
1681118761,50,000.00CONTRACONTRATRUE
178111876-1,25,181.00CONTRACONTRATRUE
188111876-1,50,000.00CONTRACONTRATRUE
1981118761,25,181.00CONTRACONTRATRUE
2081118761,50,000.00CONTRACONTRATRUE
218111876-1,25,181.00CONTRAWIPFALSE
228111876-1,50,000.00CONTRA1,00,716.00WIPFALSE
23811191026,430.00WIPWIPTRUE
2481119105,915.00WIPWIPTRUE
2581119106,05,234.00CONTRAWIPFALSE
2681119103,08,648.00WIPWIPTRUE
2781119101,75,824.00CONTRAWIPFALSE
28811191043,952.00CONTRAWIPFALSE
298111910-32,346.00CONTRACONTRATRUE
30811191032,346.00CONTRACONTRATRUE
318111910-6,37,580.00CONTRACONTRATRUE
3281119106,37,580.00CONTRACONTRATRUE
338111910-11,66,005.00CONTRACONTRATRUE
3481119105,50,000.00CONTRAWIPFALSE
35811191011,66,005.00CONTRACONTRATRUE
368111910-9,97,710.00CONTRAWIPFALSE
378111910-3,50,000.00CONTRA3,68,293.00WIPFALSE
Sheet1
Cell Formulas
RangeFormula
O2=N2=L2
O3=N3=L3
O4=N4=L4
O5=N5=L5
O6=N6=L6
O7=N7=L7
O8=N8=L8
O9=N9=L9
O10=N10=L10
O11=N11=L11
O12=N12=L12
O13=N13=L13
O14=N14=L14
O15=N15=L15
O16=N16=L16
O17=N17=L17
O18=N18=L18
O19=N19=L19
O20=N20=L20
O21=N21=L21
O22=N22=L22
O23=N23=L23
O24=N24=L24
O25=N25=L25
O26=N26=L26
O27=N27=L27
O28=N28=L28
O29=N29=L29
O30=N30=L30
O31=N31=L31
O32=N32=L32
O33=N33=L33
O34=N34=L34
O35=N35=L35
O36=N36=L36
O37=N37=L37
 
Upvote 0
Sorry, after reading your last data I don’t think I can find a good solution for your problem. So maybe someone else here could help.
But I added some lines in the code just to mark the section (with X) where the code can't find the solution, so at least you know where to look, to do it manually.
Here’s the revised code:



Code:
[FONT=lucida console][COLOR=Royalblue]Sub[/COLOR] a1086996c()
[I][COLOR=seagreen]'https://www.mrexcel.com/forum/excel-questions/1086996-excel-formula-vba-conditional-sum-find-contra-multiple-entries.html[/COLOR][/I]
[COLOR=Royalblue]Dim[/COLOR] i [COLOR=Royalblue]As[/COLOR] [COLOR=Royalblue]Long[/COLOR], j [COLOR=Royalblue]As[/COLOR] [COLOR=Royalblue]Long[/COLOR], n [COLOR=Royalblue]As[/COLOR] [COLOR=Royalblue]Long[/COLOR]
[COLOR=Royalblue]Dim[/COLOR] x [COLOR=Royalblue]As[/COLOR] [COLOR=Royalblue]Long[/COLOR], k [COLOR=Royalblue]As[/COLOR] [COLOR=Royalblue]Long[/COLOR], z [COLOR=Royalblue]As[/COLOR] [COLOR=Royalblue]Long[/COLOR]
[COLOR=Royalblue]Dim[/COLOR] q [COLOR=Royalblue]As[/COLOR] [COLOR=Royalblue]Long[/COLOR]
[COLOR=Royalblue]Dim[/COLOR] va, vb, vc
[COLOR=Royalblue]Dim[/COLOR] flag [COLOR=Royalblue]As[/COLOR] [COLOR=Royalblue]Boolean[/COLOR]

Application.ScreenUpdating = [COLOR=Royalblue]False[/COLOR]
n = Range([COLOR=brown]"C"[/COLOR] & Rows.count).[COLOR=Royalblue]End[/COLOR](xlUp).Row
va = Range([COLOR=brown]"C1:C"[/COLOR] & n)
vb = Range([COLOR=brown]"K1:K"[/COLOR] & n)
[COLOR=Royalblue]ReDim[/COLOR] vc([COLOR=crimson]1[/COLOR] [COLOR=Royalblue]To[/COLOR] n, [COLOR=crimson]1[/COLOR] [COLOR=Royalblue]To[/COLOR] [COLOR=crimson]2[/COLOR])
Range([COLOR=brown]"L1:M"[/COLOR] & n).ClearContents

[COLOR=Royalblue]For[/COLOR] i = [COLOR=crimson]2[/COLOR] [COLOR=Royalblue]To[/COLOR] UBound(va, [COLOR=crimson]1[/COLOR])
    j = i:  x = [COLOR=crimson]0[/COLOR]
    
    [COLOR=Royalblue]Do[/COLOR]
        x = x + vb(i, [COLOR=crimson]1[/COLOR])
        i = i + [COLOR=crimson]1[/COLOR]
        [COLOR=Royalblue]If[/COLOR] i > UBound(va, [COLOR=crimson]1[/COLOR]) [COLOR=Royalblue]Then[/COLOR] [COLOR=Royalblue]Exit[/COLOR] [COLOR=Royalblue]Do[/COLOR]
    [COLOR=Royalblue]Loop[/COLOR] [COLOR=Royalblue]While[/COLOR] va(i, [COLOR=crimson]1[/COLOR]) = va(i - [COLOR=crimson]1[/COLOR], [COLOR=crimson]1[/COLOR])
        
    i = i - [COLOR=crimson]1[/COLOR]
    
    vc(i, [COLOR=crimson]2[/COLOR]) = x
    
    [COLOR=Royalblue]If[/COLOR] x = [COLOR=crimson]0[/COLOR] [COLOR=Royalblue]Then[/COLOR] [COLOR=Royalblue]GoTo[/COLOR] [COLOR=Royalblue]skip[/COLOR]:
    
    [COLOR=Royalblue]If[/COLOR] x < [COLOR=crimson]0[/COLOR] [COLOR=Royalblue]Then[/COLOR]
        [COLOR=Royalblue]For[/COLOR] k = j [COLOR=Royalblue]To[/COLOR] i
            vb(k, [COLOR=crimson]1[/COLOR]) = vb(k, [COLOR=crimson]1[/COLOR]) * -[COLOR=crimson]1[/COLOR]
        [COLOR=Royalblue]Next[/COLOR]
        x = x * -[COLOR=crimson]1[/COLOR]
    [COLOR=Royalblue]End[/COLOR] [COLOR=Royalblue]If[/COLOR]
    
            [COLOR=Royalblue]For[/COLOR] k = j [COLOR=Royalblue]To[/COLOR] i
            
                z = [COLOR=crimson]0[/COLOR]
                
                [COLOR=Royalblue]For[/COLOR] q = j [COLOR=Royalblue]To[/COLOR] k
                z = z + vb(q, [COLOR=crimson]1[/COLOR])
                [COLOR=Royalblue]Next[/COLOR]
                
                flag = [COLOR=Royalblue]False[/COLOR]
                
                    [COLOR=Royalblue]If[/COLOR] z = x [COLOR=Royalblue]Then[/COLOR]
                        vc(k, [COLOR=crimson]1[/COLOR]) = [COLOR=crimson]1[/COLOR]: vc(k, [COLOR=crimson]1[/COLOR]) = [COLOR=brown]"WPI"[/COLOR]: flag = [COLOR=Royalblue]True[/COLOR]: [COLOR=Royalblue]GoTo[/COLOR] [COLOR=Royalblue]skip[/COLOR]:
                    [COLOR=Royalblue]ElseIf[/COLOR] z > x [COLOR=Royalblue]Then[/COLOR]
                        vb(k, [COLOR=crimson]1[/COLOR]) = [COLOR=crimson]0[/COLOR]
                    [COLOR=Royalblue]Else[/COLOR]
                        [COLOR=Royalblue]If[/COLOR] vb(k, [COLOR=crimson]1[/COLOR]) <= [COLOR=crimson]0[/COLOR] [COLOR=Royalblue]Then[/COLOR]
                            vb(k, [COLOR=crimson]1[/COLOR]) = [COLOR=crimson]0[/COLOR]
                        [COLOR=Royalblue]Else[/COLOR]
                            vc(k, [COLOR=crimson]1[/COLOR]) = [COLOR=brown]"WPI"[/COLOR]
                        [COLOR=Royalblue]End[/COLOR] [COLOR=Royalblue]If[/COLOR]
                    [COLOR=Royalblue]End[/COLOR] [COLOR=Royalblue]If[/COLOR]
                    
            [COLOR=Royalblue]Next[/COLOR]
        
[COLOR=Royalblue]skip[/COLOR]:

        [COLOR=Royalblue]If[/COLOR] flag = [COLOR=Royalblue]False[/COLOR] [COLOR=Royalblue]Then[/COLOR]
            [COLOR=Royalblue]For[/COLOR] k = j [COLOR=Royalblue]To[/COLOR] i
                vc(k, [COLOR=crimson]1[/COLOR]) = [COLOR=brown]"X"[/COLOR]
            [COLOR=Royalblue]Next[/COLOR]
        [COLOR=Royalblue]End[/COLOR] [COLOR=Royalblue]If[/COLOR]
[COLOR=Royalblue]Next[/COLOR]

Range([COLOR=brown]"L1"[/COLOR]).Resize(UBound(vc, [COLOR=crimson]1[/COLOR]), [COLOR=crimson]2[/COLOR]) = vc
Range([COLOR=brown]"L1"[/COLOR]) = [COLOR=brown]"Manual"[/COLOR]

Application.ScreenUpdating = [COLOR=Royalblue]True[/COLOR]
[COLOR=Royalblue]End[/COLOR] [COLOR=Royalblue]Sub[/COLOR][/FONT]
 
Last edited:
Upvote 0
Yes, even that will save lot of time. However the code you just sent marked every transaction as X. Did something change in the code?
 
Upvote 0
Yes, even that will save lot of time. However the code you just sent marked every transaction as X. Did something change in the code?


Yes, as I said it’s to mark the section (with X) where the code can't find the solution. For the section that the code can find the solution it will mark with WPI ( and blank).
 
Upvote 0

Forum statistics

Threads
1,214,571
Messages
6,120,302
Members
448,954
Latest member
EmmeEnne1979

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