IFISERROR Formula - Adding a dividing function

excelenergy

Board Regular
Joined
Jun 7, 2012
Messages
142
Hello,

My question may be relatively simple. Im curious about adding a function into the formula which I currently have that works. The formula is an IFISERROR.

=IF(ISERROR(MATCH(O14,A$1:E$5,0))=FALSE,"Yes","No")

The way it works is - O14 checks for a value in my Array of A1:E5. If it finds that matching value it returns a yes or no. Pretty simple right..

What I would like to do, is if the formula finds the matching value, I want to add in a way to divide O14/the Z41.

Does anyone have any recommendations on the best way to do that?
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Is your formula =IF(ISERROR(MATCH(O14,A$1:E$5,0))=FALSE,"Yes","No") producing the results you expect?
I was of the opinion the Match() function only worked with an Lookup_Array of either a single Column or a single Row.


MATCH(O14,
A$1:E$5
,0)
????

Can you manipulate things so that your formula returns a "Yes"?
 
Last edited:
Upvote 0
Jim is right about the behavior of the MATCH function.

Is this perhaps what you want?

=IF(COUNTIFS(A$1:E$5, O14), O14/Z41, "not available")
 
Upvote 0

Forum statistics

Threads
1,215,564
Messages
6,125,579
Members
449,237
Latest member
Chase S

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