A FUNCTION() is by definition a formula. If it is used in a cell, that is.
However a macro can be invoked to run on the activecell. This macro will convert the current selected cells into flat values:
Code:
Sub RemoveFormulas()
Selection.Value = Selection.Value
End Sub