Quote Originally Posted by Fluff13 View Post
You can use something like this to "hide" the commanButton
If Sheet8.Range("DC4").Value = "" Then
   Me.CommandButton1.Visible = False
Else
   Me.CommandButton1.Visible = True
End If
For those who might be interested, this can be compacted down to this single line of code...
Me.CommandButton1.Visible = Len(Sheet8.Range("DC4").Value)