hi, how do i add numbers to row in the following manner:
if 4 rows have the same number then one of them should be 0 and the rest 1, same for all others.
basically, the code should look at the value in the table, if it's the same as the row before add 1, if not - 0 (i think i got the logic right).
Numbers In My Table Numbers To Add
2 0
2 1
2 1
2 1
4 0
4 1
17 0
17 1
17 1
17 1
18 0
18 1
55 0
55 1
thank you!!!
if 4 rows have the same number then one of them should be 0 and the rest 1, same for all others.
basically, the code should look at the value in the table, if it's the same as the row before add 1, if not - 0 (i think i got the logic right).
Numbers In My Table Numbers To Add
2 0
2 1
2 1
2 1
4 0
4 1
17 0
17 1
17 1
17 1
18 0
18 1
55 0
55 1
thank you!!!