I am using the following formula in a cell to retrieve the value from the cell to its immediate left, but I want instead to retrieve its formula:
=INDIRECT("RC[-1]",FALSE)Sample Formulas
- A1 →
=INDIRECT("RC[-1]",FALSE) - B1 →
=IF(1, "I'm a value",)
Current Result
| A | B | |
|---|---|---|
| 1 | I'm a value | I'm a value |
Desired Result
I want to retrieve the actual formula from the cell rather than its value.
In other words, =IF(1, "I'm a value",) instead of I'm a value
