View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Verify Active Cell

Hi Brian,

Try something like:

'=========
Public Sub AAA()
If ActiveCell.Row = 6 And ActiveCell.Row <= 20 Then
'Do something, e.g.:
MsgBox "OK"
Else
'do something else, e.g.:
MsgBox "Not OK"
End If

End Sub

'<<=========

---
Regards,
Norman


"Brian Matlack"
wrote in message
news:Brian.Matlack.1z9rxa_1133286602.4575@excelfor um-nospam.com...

Hi!
What code would I use to Verify that the Active cell is with in a range
(say between row 6 and 20) before allowing the macro to continue.

I want the user to choose a cell within a given range of rows and then
click the delete button to delete the data in the cells of that row. I
want the macro to stop and a msgbox to appear telling them to choose a
cell within the range.

I have the code for the deleting and the msgbox I just don't know how
to verify the active cell.

Thanks!!


--
Brian Matlack
------------------------------------------------------------------------
Brian Matlack's Profile:
http://www.excelforum.com/member.php...fo&userid=3508
View this thread: http://www.excelforum.com/showthread...hreadid=489137