Hi, I am using microsoft excel 2007 and have a little question about conditional formatting. How do I set conditional formatting so that "if column a is greater than eight characters, change to this color" Anyone have any idea?
Seems like you have to write a short VB function like this: Function Length(val) val = CStr(val) Length = Len(val) End Function It must be placed in a module. Then you'll be able to use this function everywhere in Excel. Condition must be formula and you can type in the Length function there.