ok, I know you can delete brutes by ID in sql, but the task I was requested to do would be ridiculous to attempt manually that way.
I could do it in excel, but I need a problem answered:
the decrypter exports IDs in the format:
193796, 306292, 338461, 134500, 171446, 70081, 711432, 397314, 65363,
how do I change it to:
193796
306292
338461
134500
171446
70081
711432
397314
65363
without doing this manually for every ID in the list? there are several thousand ID's in this list...
once I get the list in that format, I can then put it in excel to compare and delete unwanted IDs, because after much trial and error, I finally came up with this:
=IF(ISNA(MATCH(B1,A:A,0)),"","this is unwanted!")
which will indicate that that specific row of column A contains the same unwanted ID as a specified, unwanted ID in column B.
any help setting up that formatting would be greatly appreciated!
update: after walking away for a bit, I discovered another way in sql. you don't have to do just one at a time, but it does require some formatting in a word document. using the command "DELETE FROM BRUTES WHERE ID = " and having at least two IDs to delete, i.e. 193796, 306292, using formatting it becomes "DELETE FROM BRUTES WHERE ID = 193796; DELETE FROM BRUTES WHERE ID = 306292"
but, if anyone's willing, I'd still like to know the proper formula for excel. please show me what I did wrong in my experiment