ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   GetFormula function- Need help showing formulas only- (https://www.excelbanter.com/excel-worksheet-functions/63590-getformula-function-need-help-showing-formulas-only.html)

[email protected]

GetFormula function- Need help showing formulas only-
 
I am trying to show the formulas of one range of cell in another range
of cells. I want range (I4:I15) to show the formulas in range(F4:F15).
Below is the formula I am using but I am new to visual basic and I cant
get this formula to work. Can anyone help?

Range("F4:F15").Select
Selection.Copy
Range("I4").Select
ActiveSheet.Paste
Application.CutCopyMode = False

Function GetFormula(I4) As String
GetFormula = cell.Formula
End Function

Any comment is greatly appreciated. Thanks.


Dave Peterson

GetFormula function- Need help showing formulas only-
 
Change the UDF:

Function GetFormula(cell as range) As String
GetFormula = cell.Formula
End Function

Then put this in F4:
=getformula(i4)
and drag down.



wrote:

I am trying to show the formulas of one range of cell in another range
of cells. I want range (I4:I15) to show the formulas in range(F4:F15).
Below is the formula I am using but I am new to visual basic and I cant
get this formula to work. Can anyone help?

Range("F4:F15").Select
Selection.Copy
Range("I4").Select
ActiveSheet.Paste
Application.CutCopyMode = False

Function GetFormula(I4) As String
GetFormula = cell.Formula
End Function

Any comment is greatly appreciated. Thanks.


--

Dave Peterson

[email protected]

GetFormula function- Need help showing formulas only-
 
Thank you- that was easier than I thought



All times are GMT +1. The time now is 04:14 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com