The following might help although I don't use "check boxes" (the little boxes you can tick) to place the "x". I am assuming that you can use blank cells and enter an "x" into one of them which in turn will fill in all of the other relevant cells.
You need to insert a 'Helper column'. This MUST be at the left of the values that you currently have in column A (so all of your data currently in column A will now be in column B and your "automatic x marks" will be displayed in column C). The idea of this helper column is that you'll type an "x" into a cell 9ssay A7) and if there are repetitions of the value contained in cell B7 in any other B cells that an X will be automatically entered into the corresponding column C cells.
If you type the following formula into cell C1 (assuming that your data is contained in the range A1 to B5) see how it works:
=IF(OFFSET(A1,0,1)=VLOOKUP("x",$a$2:$b$5,2,FALSE),"x","")
However, I couldn't make it work for multiple repetitions of different numbers eg where multiple cells contain the value 345 and some other multiple cells contain 678 it won't display ALL the repetitions of ALl values- it'll only show an x for ALL 345 values OR all 678 values but not both simultaneously...sorry!
Bookmarks