DKDiveDude
IS-IT--Management
The following VBA line worked swell in Excel 2000.
ActiveSheet.Range("Alert").Cells.Font.Color = RGB(255, 0, 0)
The company I work for was FORCED to upgrade to Office 2003, because the new Microsoft Exchange Server required that version. I am 100% sure Micro$oft could have programmed this new Exchange Server, without this requirement, but tweaking it a certain way they made it so they forced companies to upgrade. I really, really, really hate Micro$soft!
Anyways, after the Office 2003, I now I get a Run-time error '1004':
Unable to set the Color property of the Font class
I have two questions:
1) Was the above VBA code not properly formatted, I mean stupid code, or is it Micro$oft who just can't make an upgrade that is 100% backward compatible?
2) Looking a bit in the VBA help file I noticed ColorIndex, but after changing my code I still get the same error:
ActiveSheet.Range("Alert").Cells.Font.ColorIndex = 3
Can somebody please help me out, thanks
ActiveSheet.Range("Alert").Cells.Font.Color = RGB(255, 0, 0)
The company I work for was FORCED to upgrade to Office 2003, because the new Microsoft Exchange Server required that version. I am 100% sure Micro$oft could have programmed this new Exchange Server, without this requirement, but tweaking it a certain way they made it so they forced companies to upgrade. I really, really, really hate Micro$soft!
Anyways, after the Office 2003, I now I get a Run-time error '1004':
Unable to set the Color property of the Font class
I have two questions:
1) Was the above VBA code not properly formatted, I mean stupid code, or is it Micro$oft who just can't make an upgrade that is 100% backward compatible?
2) Looking a bit in the VBA help file I noticed ColorIndex, but after changing my code I still get the same error:
ActiveSheet.Range("Alert").Cells.Font.ColorIndex = 3
Can somebody please help me out, thanks