Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Delete Specified Rows in an Excel SpreadsheetContent of Delete Specified Rows in an Excel Spreadsheet.vbsMD5 Hash: BEFA7341974FFB3AC1164A32A32BDF52 |
||
Set objExcel = CreateObject("Excel.Application")
objExcel.Visible = True Set objWorkbook = objExcel.Workbooks.Open("C:\Scripts\Test.xls") i = 1 Do Until objExcel.Cells(i, 1).Value = "" If objExcel.Cells(i, 1).Value = "delete" Then Set objRange = objExcel.Cells(i, 1).EntireRow objRange.Delete i = i - 1 End If i = i + 1 Loop | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |