Mr_Ragweed
Board Regular
- Joined
- Dec 10, 2012
- Messages
- 74
Hi and thanks in advance,
I'm working on an "If Then" issue. In laymans terms my code would read "If this range of cells is empty, then copy this other range of cells".
In my attempt to code it it reads:
If ActiveSheet.Shapes(btnAccept").Select = Click Then
If ActiveSheet.Range("I4:I13") = IsEmpty Then
ActiveSheet.Range("B1" & "N4:N13").Select
Selection.Copy
yadda yadda yadda
My problem is with the "IsEmpty". Apparently thats not the right nomenclature. I've tried "Empty", "Blank", and "IsBlank" as well - all to no avail. How do I reference/what do i call an empty cell?
Thanks again.
I'm working on an "If Then" issue. In laymans terms my code would read "If this range of cells is empty, then copy this other range of cells".
In my attempt to code it it reads:
If ActiveSheet.Shapes(btnAccept").Select = Click Then
If ActiveSheet.Range("I4:I13") = IsEmpty Then
ActiveSheet.Range("B1" & "N4:N13").Select
Selection.Copy
yadda yadda yadda
My problem is with the "IsEmpty". Apparently thats not the right nomenclature. I've tried "Empty", "Blank", and "IsBlank" as well - all to no avail. How do I reference/what do i call an empty cell?
Thanks again.