Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Determine the Background Color of a Spreadsheet CellContent of Determine the Background Color of a Spreadsheet Cell.vbsMD5 Hash: A7F3291B9051542F2A144A75252508A7 |
||
Set objExcel = CreateObject("Excel.Application")
objExcel.Visible = True Set objWorkbook = objExcel.Workbooks.Open("C:\Scripts\Test.xls") Set objWorksheet = objWorkbook.Worksheets(1) i = 2 Do Until x = 1 If objWorksheet.Cells(i,1) = "" Then Exit Do End If intColor = objWorksheet.Cells(i,2).Interior.ColorIndex Select Case intColor Case 3 strStatus = "Behind schedule" Case 4 strStatus = "Project complete" Case 6 strStatus = "Project on schedule" Case Else strStatus = "No information" End Select Wscript.Echo objWorksheet.Cells(i,1).Value & " -- " & strStatus i = i + 1 Loop | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |