ashish koul
Member
If you want to check if cell is BOLD or not . Try this UDF-
[pre]
[/pre]
It will return True if Cell is bold and False if not
[pre]
Code:
Function Is_Bold(xa As Range)
Is_Bold = xa.Font.Bold
End Function
It will return True if Cell is bold and False if not