If you want to extract the formula written on a cell . Try this UDF
Function know_formula(cl As Range) As String
If cl.Cells.Count = 1 Then
If cl.HasFormula Then
know_formula = "'" & cl.Formula
Else
know_formula = "No Formula Found"
End If
End If
End Function
Download working file
Function know_formula(cl As Range) As String
If cl.Cells.Count = 1 Then
If cl.HasFormula Then
know_formula = "'" & cl.Formula
Else
know_formula = "No Formula Found"
End If
End If
End Function
Download working file
Steps to Use
- Copy the below code
- Press Alt+F11 to open VBA editor
- Paste it in any public module or module 1
- For example you have entered any formula in Cell A1 and now in cell B1 you want to know the formula typed in cell A1 . In cell B1 type =know_formula(A1)
No comments:
Post a Comment