• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Function to get Cell font color

Amit_KK

New Member
Hello folks, can we make or there is existing function to get cell font color to referred cell by using or without VBA ??

Please help.

Thanks
 
Amit_KK
from below would find cell font color too..
 
And if interested, here is a VBA solution.

Code:
Sub FindColor()
MsgBox "Background " & Selection.Interior.ColorIndex
MsgBox "Font " & Selection.Font.ColorIndex
End Sub
 
Back
Top