Premium Excel Course Now Available!
Build Professional - Unbreakable - Forms in Excel
45 Tutorials - 5+ Hours - Downloadable Excel Files
Instant Access! - Lifetime Access!
Get a formula from a cell using VBA in Excel.
This method returns the actual formula instead of the output value.
Get the Formula of a Cell into a Macro
We use the Formula property for this.
To get the formula in cell A1, type this in a macro:
Range("A1").Formula
I will put MsgBox in front of this line of code so we can see the output in Excel:
MsgBox Range("A1").Formula
Go back to Excel and run it on a cell that has a date and this is the result:
In cell A1, you can see the actual visible output, which is the date, and in the message box pop-up you can see the formula that was used to create the output.
Using Formula in VBA means that the macro will get the formula that we see in the message box.
Notes
This is pretty straightforward, if you want to get the value of a cell that is easy and you can read about it in the link.
Download the attached workbook to see this example in Excel.
Get Text from Comments in Excel Including the Author of the Comment - UDF
Macro: Output all text from a cell comment, including comment author, with this UDF in Excel. Thi...
Loop through a Range of Cells in Excel VBA/Macros
Tutorial: How to use VBA/Macros to iterate through each cell in a range, either a row, a column, or ...
Limit the Total Amount a User Can Enter into a Range of Cells in Excel
Tutorial: How to limit the amount that a user can enter into a range of cells in Excel. This works...
Me Keyword in Excel Macros & VBA
Tutorial: The Me keyword in Excel VBA allows you to refer to either the current worksheet, workbook,...
Select Ranges of Cells in Excel using Macros and VBA
Tutorial: This Excel VBA tutorial focuses specifically on selecting ranges of cells in Excel. This...