PeterMoran
MIS
Hi,
I have this function to identify cells with formulas:
I would like something virtually identical to identify if a cell has a single Underline, as ther does not appear to be a "HasUnderline" reference in VBA.
Any help greatly appreciated.
Thanks,
Peter Moran
I have this function to identify cells with formulas:
Code:
Function HasFormula(Check_Cell As Range)
'
' HasFormula Function
' Checks whether a cell has a formula - TRUE/FALSE
' =HasFormula(A1)
'
HasFormula = Check_Cell.HasFormula
End Function
I would like something virtually identical to identify if a cell has a single Underline, as ther does not appear to be a "HasUnderline" reference in VBA.
Any help greatly appreciated.
Thanks,
Peter Moran