Related:
- Macro
- Spell number in excel without macro - Guide
- Macro excel download - Download - Spreadsheets
- Excel macro to create new sheet based on value in cells - Guide
- Run macro on opening workbook - Guide
- Online macro excel - Guide
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Aug 26, 2009 at 08:52 PM
Aug 26, 2009 at 08:52 PM
use this macro
Sub test() Dim j As Integer, k As Integer j = Range("A1").End(xlDown).Row 'j is the last row For k = j To 1 Step -1 If Cells(k, "c") = 4 And Cells(k, "f") = 6 Then Cells(k, "c").EntireRow.Delete End If Next k End Sub
Sep 10, 2009 at 02:46 AM