INDIRECT FUNCTION

F

Faraz A. Qureshi

I have a A1 with a formula ="+2+2"
I thought =INDIRECT(A1) would reflect 4 whereas it is returning #Ref!
How to carryout the desired function?
 
J

Jacob Skaria

INDIRECT() evaluates cell references are display their contents...You can try
something like the below.

=EquateFormula(A1)

Function EquateFormula(strData As String) As Variant
EquateFormula = Application.Evaluate("=" & strData)
End Function
 
J

Jacob Skaria

Since you have '=' sign in your cell...

Function EquateFormula(strData As String) As Variant
EquateFormula = Application.EVALUATE(strData)
End Function
 
F

Faraz A. Qureshi

I see!
That means a formula type string can't be evaluated with built-in functions?
 
×

מיכ×ל (מיקי) ×בידן

The question is what do you refer to as built-in functions ?
However - there are two work-arounds with no need for VBA code.
1) While the "+2+2" was typed in cell A1 > select cell B1 > press CTRL+F3 >
define the name EVALUATION and refer it to:
=EVALUATE(A1)
In cell B1 type EVALUATION [with no argument and/or parentheses !!!
 
F

Faraz A. Qureshi

XClent idea of Name Defining!
--
Thanx & Best Regards,

Faraz!


מיכ×ל (מיקי) ×בידן said:
The question is what do you refer to as built-in functions ?
However - there are two work-arounds with no need for VBA code.
1) While the "+2+2" was typed in cell A1 > select cell B1 > press CTRL+F3 >
define the name EVALUATION and refer it to:
=EVALUATE(A1)
In cell B1 type EVALUATION [with no argument and/or parentheses !!!
-------------------
2) Download and activate the add-in MOREFUNC.
In B1 Type: =EVAL(A1) Function
http://download.cnet.com/Morefunc/3000-2077_4-10423159.html
-------------------
The MOREFUNC add-in has a lot of more handy and useful functions.
Micky


Faraz A. Qureshi said:
I see!
That means a formula type string can't be evaluated with built-in functions?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top