I have two ranges A2:E2 and B1:B5. Now if I perform intersect operation it will return me B2. I want some way through which I can get my output as B2 to be consider in any one range either A2:E2 and B1:B5. i.e if there is a repeated cell then it should be avoided.
Expected output :
A2,C2:E2,B1:B5
OR
A2:E2,B1,B3:B5
Can anyone help me.
Like this?
OUTPUT:
EXPLANATION: What I am doing here is declaring a temp range as
FinalRangeand setting it toRange 1. After that I am checking for each cell inRange 2if it is present inRange 1. If it is then I am ignoring it else adding it usingUnionto theRange 1EDIT Question was also cross posted here