hi!
thks for responding again promptly!
as you rightly predict i am not that much of goose!
btw i am afraid that A2&ABS(B2) in col-B doesn't seems to
work for the text in col-A as like A2*ABS(B2) does the trick
for the number..!
ex:
"A" "B" "C" "D"
abcd... 100.... abcd100...blank
abcd... -100... abcd100...blank
abcd... -100... abcd100...blank
efgh....100.... efgh100....blank
actually i should get
abcd... -100...blank
efgh....100....blank
-via135
Roger Govier wrote:
Hi
Just change the formula in C2 to
=A2&ABS(B2)
then, you had already worked out my error for column D, it should
have
read
=IF(ISEVEN(COUNTIF($C$2:$C$15,C2)),1,"")
--
Regards
Roger Govier
hi!
sorry for disturbing again..!
one more follow up question..pl?
this formula seems to be ok for number values.
if iam having text as ref in the place of number ref
in col-A, is there any method to arrive at the result?
-via135
Roger Govier wrote:
Glad we got there in the end!!!
Thanks for the feedback.
--
Regards
Roger Govier
that's it!
this is what i exactly want!
thks roger.. thks a lot..!
-via135
Roger Govier wrote:
Hi
I think I understand. You just want to identify those lines
where
the
number in column A is the same, and, the sum of the numbers
adjacent
to
them in column B equals zero.
If so then in column C enter
=A2*ABS(B2)
In D2 enter
=IF(ISEVEN(COUNTIF($D$2:$D$15,D2)),1,"")
Filter on column D for values of 1
--
Regards
Roger Govier
hi!
i think i've not explained it well!
infact my intention is not to delete the duplicate
records..!
i
just
want to eliminate the matched pairs of +ve and -ve wrt
the
other
column!
for example if i am having 4 records as under
1112........100
1112........-100
1112........-100
1113........100
i don't want to eliminate the duplicate records 2nd & 3rd
instead i want to offset 1st & 2nd (reconciled ones) and
identify the 3rd and 4th as unreconciled..!!
hope u understand..!!
regds!
-via135
On Nov 14, 2:47 pm, "Roger Govier"
<
[email protected]>
wrote:
Hi
The formula is working correctly.When you apply the
Autofilter,
use the dropdown on column C choose >Custom>Greater
than>0
This will then show your rows which are duplicated.
Alternatively, you could wrap the formula in an IF
statement
=IF(SUMPRODUCT(($A$2:$A$11=A2)*($B$2:$B$11=-B2))>0,"Duplicate","")
Filter column C for Duplicate
--
Regards
Roger Govier
message
yes..you are absolutely right!
i have given "B2" i / o "-B2"..!
one more question..the formula gives the right answer
only
when
the each ref no in col A is having some unique value
col
B..!
when the same value is repeated in col B for the same
ref
no
in
col
A
there seems to be some glitch!
for example if i extend the data to A2:B15 as under..
A........B
111.... 50
112.... 100
113.... -50
114.... -100
111.... -50
115.... 150
112.... -50
114.... 50
114.... -50
113.... 100
111.... 50
113.... -100
111.... -50
114.... -50
what i am getting is
A.......B........C (getting) C (expecting)
111... 50... 2.......................1
112... 100... 0......................0
113... -50... 0.......................0
114... -100... 0......................0
111... -50... 2.......................1
115... 150... 0......................0
112... -50... 0.......................0
114... 50... 2.......................1
114... -50... 1.......................1
113... 100... 1......................1
111... 50... 2.......................1
113... -100.. 1......................1
111... -50... 2.......................1
114... -50... 1.......................0
any suggestion for alteration
in the function?
-via135
On Nov 13, 10:53 pm, "Roger Govier"
<
[email protected]>
wrote:
Hi
You cannot have entered the formula as I gave you.
I get the following results
111 50 1
112 100 0
113 -50 0
114 -100 0
111 -50 1
115 150 0
112 -50 0
114 50 1
114 -50 1
113 100 0
--
Regards
Roger Govier
message
hi Roger!
i am getting the following results:
111 50 1
112 100 1
113 -50 1
114 -100 1
111 -50 1
115 150 1
112 -50 1
114 50 2
114 -50 2
113 100 1
-via135
Roger Govier wrote:
Hi
One way
In cell C2 enter the following and copy down
=SUMPRODUCT(($A$2:$A$11=A2)*($B$2:$B$11=-B2))
There will be 1's against the matching items and 0's
against
the
rest.
Data>Filter>Autofilter>use dropdown on column C to
select
rows
with
1
hi!
[quoted text clipped - 13 lines]
-via135