Howdy all,
I have opened an Excel spreadsheet, which always has just 3 columns. I would like to scan through the rows, evaluate the 3rd column to be > 0, and if not, make the entire row bold.
I thought something like this would in order:
lnLastRow = loXls.Range( "A1").End( xlDown).Row
for loop = 2 to lnLastRow && 1 is the Header row, so skip
lcRow = alltrim( str( loop))
if loXls.Cells( loop, 3).Value = 0
loXls.Range("A" + lcRow + ":C" + lcRow).Style = "Bold"
endif
endfor
loXls.Save
But, it keeps bombing on the loXls.Range("A" + ... line with:
OLE error code 0x8002000e: Invalid number or parameters.
Any ideas why?
Cheers,
Garry
I have opened an Excel spreadsheet, which always has just 3 columns. I would like to scan through the rows, evaluate the 3rd column to be > 0, and if not, make the entire row bold.
I thought something like this would in order:
lnLastRow = loXls.Range( "A1").End( xlDown).Row
for loop = 2 to lnLastRow && 1 is the Header row, so skip
lcRow = alltrim( str( loop))
if loXls.Cells( loop, 3).Value = 0
loXls.Range("A" + lcRow + ":C" + lcRow).Style = "Bold"
endif
endfor
loXls.Save
But, it keeps bombing on the loXls.Range("A" + ... line with:
OLE error code 0x8002000e: Invalid number or parameters.
Any ideas why?
Cheers,
Garry