Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Change the Font Color in Excel If a Specified Condition is MetContent of Change the Font Color in Excel If a Specified Condition is Met.vbsMD5 Hash: 8698C15BFBAF1483412BDE83F0116E74 |
||
Set objExcel = CreateObject("Excel.Application")
objExcel.Visible = True Set objWorkbook = objExcel.Workbooks.Open("C:\Scripts\Test.xls") Set objWorksheet = objWorkbook.Worksheets(1) i = 1 Do Until objWorksheet.Cells(i, 1) = "" intA = objWorksheet.Cells(i, 1) intB = objWorksheet.Cells(i, 2) If intB - intA >= 10 Then objWorksheet.Cells(i, 1).Font.ColorIndex = 3 objWorksheet.Cells(i, 2).Font.ColorIndex = 3 End If i = i + 1 Loop | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |