Difference between two cell ranges

georgemathew46

New Member
Joined
Jun 5, 2013
Messages
22
Hi,
i have two variables which holds a range
x=a1:f16
y=a16:f16
i want to do a difference. but its not working.

i want my output to be

z=x-y i.e z=a1:f15

Please help me out... :)
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
This function worked for me, from:
excel vba - VBA Difference between two ranges - Stack Overflow

Code:
Function SetDifference(Rng1 As Range, Rng2 As Range) As Range
On Error Resume Next

If Intersect(Rng1, Rng2) Is Nothing Then
    'if there is no common area then we will set both areas as result
    Set SetDifference = Union(Rng1, Rng2)
    'alternatively
    'set SetDifference = Nothing
    Exit Function
End If

On Error GoTo 0
Dim aCell As Range
For Each aCell In Rng1
    Dim Result As Range
    If Application.Intersect(aCell, Rng2) Is Nothing Then
        If Result Is Nothing Then
            Set Result = aCell
        Else
            Set Result = Union(Result, aCell)
        End If
    End If
Next aCell
Set SetDifference = Result

End Function
 
Upvote 0
Great thanks for instant reply bro..

But i am having some issues again.. am not able to print the output range or view it..

Could you please help ?

Dim rng As Range
Dim SrcRange As Range ' you should always declare things explicitly
Set SrcRange = Sheets("sheet1").Range("A1:c3")
Dim trgRange As Range ' you should always declare things explicitly
Set trgRange = Sheets("sheet1").Range("A3:c3")
Set rng = SetDifference(SrcRange, trgRange)
Sheets("Sheet1").Range(rng).Select

----------------------------------


Function SetDifference(Rng1 As Range, Rng2 As Range) As Range
On Error Resume Next


If Intersect(Rng1, Rng2) Is Nothing Then
'if there is no common area then we will set both areas as result
Set SetDifference = Union(Rng1, Rng2)
'alternatively
'set SetDifference = Nothing
Exit Function
End If


On Error GoTo 0
Dim aCell As Range
For Each aCell In Rng1
Dim Result As Range
If Application.Intersect(aCell, Rng2) Is Nothing Then
If Result Is Nothing Then
Set Result = aCell
Else
Set Result = Union(Result, aCell)
End If
End If
Next aCell
Set SetDifference = Result
End Function
 
Upvote 0
Update Bro..
Cleared the issue by self..
Many Thanks Bro... :)


Sub Macro1()
'
' Macro1 Macro
'
'
Dim rng As Range
Dim SrcRange As Range ' you should always declare things explicitly
Set SrcRange = Sheets("sheet1").Range("A1:f16")
Dim trgRange As Range ' you should always declare things explicitly
Set trgRange = Sheets("sheet1").Range("A14:f16")
Set rng = SetDifference(SrcRange, trgRange)
MsgBox rng.Address
End Sub
Function SetDifference(Rng1 As Range, Rng2 As Range) As Range
On Error Resume Next


If Intersect(Rng1, Rng2) Is Nothing Then
'if there is no common area then we will set both areas as result
Set SetDifference = Union(Rng1, Rng2)
'alternatively
'set SetDifference = Nothing
Exit Function
End If


On Error GoTo 0
Dim aCell As Range
For Each aCell In Rng1
Dim Result As Range
If Application.Intersect(aCell, Rng2) Is Nothing Then
If Result Is Nothing Then
Set Result = aCell
Else
Set Result = Union(Result, aCell)
End If
End If
Next aCell
Set SetDifference = Result
End Function
 
Upvote 0
Thanks for your reach out in solving my problem "difference between two cell range address"

Could you also provide the same for addition ?

like x=a1:f16
y=a17:f17
i want my output to be a1:f17 ..

Could you please help out ?
 
Upvote 0
I think for addition you can just use a Union statement. For example:

Code:
Function AddRange(Rng1 As Range, Rng2 As Range) As Range
    Set AddRange = Union(Rng1, Rng2)
End Function
 
Upvote 0

Forum statistics

Threads
1,216,739
Messages
6,132,439
Members
449,728
Latest member
teodora bocarski

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