from vertical into horizonal results from index/match

KDS14589

Board Regular
Joined
Jan 10, 2019
Messages
180
Office Version
  1. 2016
Platform
  1. Windows
I am thinking of redesigning a worksheet I have been designing lately. I had help with the original formula by one of the Mr. Excels moderators,
IFERROR(INDEX($BA$31:$BA$43,AGGREGATE(15,6,(ROW($BA$31:$BA$43)-ROW($Q$31)+1)/($Q$31:$Q$43<=$L$54)/($Q$31:$Q$43>=$L$53)/($BA$31:$BA$43<>"Angi"),ROWS(A$2:A2))),"")

This formula list results vertically, but now I wish it to list horizontally starting in FM14 and with more results in columns every 3rd apart. I've tried several solutions but none have worked. What do I need to change?
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
I am thinking of redesigning a worksheet I have been designing lately. I had help with the original formula by one of the Mr. Excels moderators,
IFERROR(INDEX($BA$31:$BA$43,AGGREGATE(15,6,(ROW($BA$31:$BA$43)-ROW($Q$31)+1)/($Q$31:$Q$43<=$L$54)/($Q$31:$Q$43>=$L$53)/($BA$31:$BA$43<>"Angi"),ROWS(A$2:A2))),"")

This formula list results vertically, but now I wish it to list horizontally starting in FM14 and with more results in columns every 3rd apart. I've tried several solutions but none have worked. What do I need to change?

Pls provide some of the dummy data to understand required output
 
Upvote 0
If you want the formula in every 3rd column you can use this in FM14
Excel Formula:
=IFERROR(INDEX($BA$31:$BA$43,AGGREGATE(15,6,(ROW($BA$31:$BA$43)-ROW($Q$31)+1)/($Q$31:$Q$43<=$L$54)/($Q$31:$Q$43>=$L$53)/($BA$31:$BA$43<>"Angi"),1)),"")
then in the next column use
Excel Formula:
=IFERROR(INDEX($BA$31:$BA$43,AGGREGATE(15,6,(ROW($BA$31:$BA$43)-ROW($Q$31)+1)/($Q$31:$Q$43<=$L$54)/($Q$31:$Q$43>=$L$53)/($BA$31:$BA$43<>"Angi"), 2)),"")
just keeping changing the final number from 1 to 2 to 3 etc.
 
Upvote 0
Solution
If you want the formula in every 3rd column you can use this in FM14
Excel Formula:
=IFERROR(INDEX($BA$31:$BA$43,AGGREGATE(15,6,(ROW($BA$31:$BA$43)-ROW($Q$31)+1)/($Q$31:$Q$43<=$L$54)/($Q$31:$Q$43>=$L$53)/($BA$31:$BA$43<>"Angi"),1)),"")
then in the next column use
Excel Formula:
=IFERROR(INDEX($BA$31:$BA$43,AGGREGATE(15,6,(ROW($BA$31:$BA$43)-ROW($Q$31)+1)/($Q$31:$Q$43<=$L$54)/($Q$31:$Q$43>=$L$53)/($BA$31:$BA$43<>"Angi"), 2)),"")
just keeping changing the final number from 1 to 2 to 3 etc.
It works, THANKS
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,517
Members
448,968
Latest member
Ajax40

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