Thread: Macros in Excel
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Macros in Excel

Hi Brfiel,

Try something like:

If Not Range("A1").Value Range("A2").Value Then
Range("A1").EntireRow.Delete
End If


---
Regards,
Norman



"l" wrote in message
...
How can I write a macro that will delte a row in an IF funtion if the
logic
is false?