Hi there! I'm trying to write a macro to see if all the cells in a range are the same value. I would have no problem just going through and either checking them individually or each against each other (like if B3=B4=B5 kind of thing) but my issue is the range is based off of a variable (and this range will continue to move down a large column of data, offset by one cell at a time, and continue to check to see if all the values are the same). Even though I don't think the variable will be changing, I want to make sure this is user friendly just in case a bigger range needs to be checked. Here is kind of what I'm thinking so far, where the variable "RangeCheck" is what might be changing in the future.
For Start=1 to Rows
Range("B4:B" & RangeCheck).Select
and here is where I get lost! The whole variable thing is just really throwing me off.
Thanks so much in advance!!!!!