isbold(C13,IF(F13>3000,3000,F13)
the result return #VALUE! .can someone help to fix the code.
the code is..
thanks guys
the result return #VALUE! .can someone help to fix the code.
the code is..
Code:
' //
' // Start Code
' //
Function IsBold(Cell_To_Check As Range, Value_If_True, Value_If_False)
If Cell_To_Check.Font.Bold = True Then
IsBold = Value_If_True
Else
IsBold = Value_If_False
End If
End Function
' //
' // End Code
' //
thanks guys