VBA Help

keyboard1960

New Member
Joined
Aug 28, 2002
Messages
7
Using VBA, how can I evaluate a cell for a value that contains a formula? Example(IF(I2=I3,IF(J2=J3,"",D2),"") returns a conditional value. My macro cannot distingush between the value and the formula. Help!
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Hello Keyboard,

Well the default return of a range call in vba is the value, something like the following should work:

<pre>
If [i2] = [i3] Then
'do something here
Else: 'do something here
End If</pre>

Not sure what you're looking to have the vba perform...
 
Upvote 0
Is this what you want to do?

Say [a3] contains the following formula:

=Sum(a1:a2)

Then

what = [a3].Formula

will return the formula

what = [a3]

or

what = [a3].Value

will return the value


If you just want to check if a cell contains a formula

If [a3].HasFormula = True Then
' ----- your code goes here -----
End If
This message was edited by hedrijw on 2002-09-01 17:15
 
Upvote 0
The other thing you can do is to assign the evaluation to a variable then call the variable, which is done below in a msgbox:

<pre>
Sub Evl()
n = [IF(I2=I3,IF(J2=J3,"",D2),"")]
MsgBox n
End Sub</pre>
 
Upvote 0

Forum statistics

Threads
1,225,074
Messages
6,182,715
Members
453,132
Latest member
nsnodgrass73

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top