Hello everybody
I have categories like below
values> .75
values> .5
values > .25
values > 0
vallues = 0
Code:
I have a data like below
So for each value in column1 if the value in column3 is 1 then only unique values in column4 should be counted and classified under different categories
for example
90913 should be counted only once for 64080 and should be categorized under
values > 0.25 = 1
90913 should be counted only once for 64083 and should be categorized under
values> .75 = 1
90913 should not be counted at all for 64085 because the value in column3 is 0
Similarly for each value in column1 the values should be counted and added under different categories.
Thanks,
vb
I have categories like below
values> .75
values> .5
values > .25
values > 0
vallues = 0
Code:
I have a data like below
Code:
64080 0.4 1 90913
64080 0.4 1 90913
64080 0.4 0 94876
64083 1 1 90913
64083 1 1 90913
64085 1 0 90913
64085 1 0 3462
for example
90913 should be counted only once for 64080 and should be categorized under
values > 0.25 = 1
90913 should be counted only once for 64083 and should be categorized under
values> .75 = 1
90913 should not be counted at all for 64085 because the value in column3 is 0
Similarly for each value in column1 the values should be counted and added under different categories.
Thanks,
vb