Slight change to formula

ExcelRoy

Well-known Member
Joined
Oct 2, 2006
Messages
2,540
Office Version
  1. 365
Platform
  1. Windows
Hi,

Can someone please assist me in changing the following formula to work if the criteria in Z2 is anything other than "SCT"

=IF($Z$2<>"",IFERROR(INDEX(Backorders!$G$2:$G$1000,SMALL(IF($L$2:$L$1000=$Z$2,ROW($L$2:$L$1000)-ROW($L$2)+1),ROWS(AJ$2:AJ2))),""),"")

Many thanks
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi ExcelRoy,

This should do the trick!

=IF(NOT($Z$2="SCT"),IFERROR(INDEX(Backorders!$G$2:$G$1000,SMALL(IF($L$2:$L$1000=$Z$2,ROW($L$2:$L$1000)-ROW($L$2)+1),ROWS(AJ$2:AJ2))),""),"")
 
Upvote 0
Do you mean like this?

=IF($Z$2<>"SCT",IFERROR(INDEX(Backorders!$G$2:$G$1000,SMALL(IF($L$2:$L$1000=$Z$2,ROW($L$2:$L$1000)-ROW($L$2)+1),ROWS(AJ$2:AJ2))),""),"")
 
Upvote 0
Many thanks for your help but not returning anything at all

Maybe because of the second Z2 in the formula?
 
Upvote 0
OK, so the formula is showing column G values when column L matches Z2. So if Z2 = SCT what do you want the formula to return, just blanks.......and if Z2 contains "xyz" (or something else, what then, do you still want column G values where column L matches Z2?
 
Upvote 0
Many thanks for your help but not returning anything at all

Maybe because of the second Z2 in the formula?

This seems to be working for me. One question though, where you have "ROWS(AJ$2:AJ2)", is that simply so when you drag the formula down it will then find the next 'nth' match in your list of data since the number of rows in the AJ range will grow by 1 each time the formula moves down a cell?

Are you entering your formula as an array formula with ctrl+shift+enter? This seems to have worked in a mock up spreadsheet for me.

{=IF($Z$2<>"SCT",IFERROR(INDEX(Backorders!$G$2:$G$1000,SMALL(IF($L$2:$L$1000=$Z$2,ROW($L$2:$L$1000)-ROW($L$2)+1),ROWS(AJ$2:AJ2))),""),"")}
 
Last edited:
Upvote 0
Hi barry & xlNoob,

the formula works fine when "SCT" is found in the list of data (Meaning internal ordering) but I need a list for external ordering hence anything other than "SCT"

I did think that the formula didn't work because of the second mention on Z2 in the formula, wether it needed to be the same a the first part?

I cannot seem to get the formula working, sorry xlNoob

Thanks
 
Upvote 0
Just a guess :)

=IF($Z$2<>"SCT",IFERROR(INDEX(Backorders!$G$2:$G$1000,SMALL(IF(AND($L$2:$L$1000=$Z$2,$Z$2<>"SCT"),ROW($L$2:$L$1000)-ROW($L$2)+1),ROWS(AJ$2:AJ2))),""),"")
 
Upvote 0
Hi admiral,

unfortunately not?

its really frustrating as it should "I think" be quite an easy thing to do?

instead of SCT it may be ABC123, DDD01 etc etc but this may change from time to time

Strange thing is if you change the SCT for one of the others on the original formula it works fine with that specific one

Thanks
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

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