how would i be able to collect cell id's where i spot discrepencies. i use this
Let i = ActiveCell.Address
and then later this, when i need to go back to that cell
Range(i).Select
but i can do this only for one cell, what if i have multiple cells whose address i need to collect, how would i do it so that everytime i encounter such an a cell i record its address and then later i go to the first cell, do someting to it, then the 2nd cell do the same thing, and etc until im done with the last cell, thanks!!
Let i = ActiveCell.Address
and then later this, when i need to go back to that cell
Range(i).Select
but i can do this only for one cell, what if i have multiple cells whose address i need to collect, how would i do it so that everytime i encounter such an a cell i record its address and then later i go to the first cell, do someting to it, then the 2nd cell do the same thing, and etc until im done with the last cell, thanks!!