Here is my code
Range("C31").Select
Selection.End(xlDown).Offset(1, 0).Select
Working fine if 2 or more lines pasted in C31. But It has error if C31 has only 1 line item as xlDown will go to the bottom of the file and Offset 1,0 will totally not work.
Is there a better code for "Selection.End(xlDown).Offset(1, 0).Select"?
if found 1 line in C31 to use code is: Range("C31").Offset(1, 0).Select.. and vice versa..
Cant seem to find simple code, for simple IF code