LearnMeExcel
Well-known Member
- Joined
- Aug 11, 2009
- Messages
- 746
- Office Version
- 365
- 2021
- Platform
- Windows
HI
i am using this function to know the bold cells, then sum it
but i am try to use it as array, it refused, how i can convert it to array
and another question i want function to check date
ISDATE
could any one help
i am using this function to know the bold cells, then sum it
Code:
Function ISBOLD(c As Range) As Boolean
If c.Font.Bold Then
ISBOLD = True
End If
End Function
Code:
=SUM(IF(ISBOLD(A1:A8),1))
and another question i want function to check date
ISDATE
could any one help