Index and If formula together with two criteria?

Excel43

New Member
Joined
Jan 7, 2020
Messages
14
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
  2. MacOS
Hi,

I would like to know how I can make this formula to use two criteria:

VBA Code:
=IFERROR(INDEX(Vikta;SMALL(IF(Vikta[Grupper]=1;ROW(Vikta)-4);ROW(2:2));1);"")


I have tried this but it gives me a a "#SPILL" error:

VBA Code:
=IFERROR(INDEX(Vikta;SMALL(IF(AND(Vikta[Grupper]=1;Vikta[Grupp]=I3);RAD(Vikta)-4);RAD(1:1));1);"")
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Ooops, the last one should say "ROW" instead of "RAD". Translating it from Swedish
 
Upvote 0
Maybe something like this where you nest two IF functions instead of the AND.
This is an array formula and must be entered with CTRL-SHIFT-ENTER.

IFERROR(INDEX(Vikta;SMALL(IF(Vikta[Grupper]=1;IF(Vikta[Grupp]=I3;RAD(Vikta)-4));RAD(1:1));1);"")
 
Upvote 0
Thanks AhoyNC! It works great! I change the code a bit and would now need to nest the function with similar ones. Do you know if it is possible to nest it? I tried this, but it gives me errors:

VBA Code:
=INDEX(Vikta;SMALL(IF(Vikta[Grupper]=1;IF(Vikta[Grupp]=I3;ROW(Vikta)-4));ROW($1:$1));27;INDEX(Vikta;SMALL(IF(Vikta[Grupper]=2;IF(Vikta[Grupp]=I3;ROW(Vikta)-4));ROW($1:$1));27))
 
Upvote 0
I solved it. Did it this way:
VBA Code:
=INDEX(Vikta;MINSTA(OM(Vikta[Grupp]=I3;OM(Vikta[Grupper]=1;RAD(Vikta)-4);OM(Vikta[Grupper]=2;RAD(Vikta)-4));RAD($1:$1));27)
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,777
Members
449,049
Latest member
greyangel23

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