A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I have formulas that chang the "cell reference" in cell C1. Basically I want code to run that will check the cell location stated in C1 and select that cell. It doesn't need to see that the cell has changed, just look at cell C1 when the code runs.
Thanks
Hi,
Either of these 2 lines in your code will read c1 and select the addres of the text in that cell
Application.Goto Range(Range("C1").Text)
Range(Range("C1").Text).Select
Unless you are very confident that C1 will always contain a valid address you should wrap either of the above lines with
on error resume next
on error goto 0