If Match x 3 Roundup .

Sunline

Well-known Member
Joined
Oct 6, 2007
Messages
701
Office Version
  1. 2016
Platform
  1. Windows
Hello all , im wanting to know if its possible to add another 2 x Match only to the begining of this function .
=IF(ISNUMBER(MATCH(BM2,$FF$41:$FF$44,0)),IF(AND(EG2>=0.1,EG2<=4.6),21-ROUNDUP(EG2/0.5,0),0),IF(ISNUMBER(MATCH(BN2,$FF$41:$FF$44,0)),IF(AND(EH2>=0.1,EH2<=4.6),21-ROUNDUP(EH2/0.5,0),0),IF(ISNUMBER(MATCH(BO2,$FF$41:$FF$44,0)),IF(AND(EI2>=0.1,EI2<=4.6),21-ROUNDUP(EI2/0.5,0),0),)))

So right at the beginning i would like to 1st match from col BJ2 only if it says Fast or Good and from col CK2 1 or 13 , then for the rest of the function to kick in . Thanks .
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
In general terms regards your additional tests:

Code:
=IF(OR(AND(BJ2<>{"Fast","Good"}),AND(CK2<>{1,13})),"",...)

If you split out the calculation such that you return 1 to 3 based on match of BN2:BO2 you could condense given repetition.
 
Upvote 0
Thanks for that .
Im not sure how to attach this to my existing one . Thanks .
 
Upvote 0

Forum statistics

Threads
1,224,537
Messages
6,179,408
Members
452,912
Latest member
alicemil

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