paste results from filter function in 2 columns

A_Richard

New Member
Joined
Jan 21, 2015
Messages
3
Is there any way to take the data that is pulled from a filter function and split them into 2 seperate columns.

As an example, I have data in Column A and B. I am filtering the data using a critria in cell D1 to match in B column. The fucntion pulls a total of 10 results. Can this data be displayed in 2 seperate columns of 5 each?
i.e D3:D7 showing A1:A5 and E3:E7 showing A6:A10


function in use
=FILTER(A:A , B:B=D1, "NF")
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
How about
Excel Formula:
=LET(f,FILTER(A:A, B:B=D1, "NF"),WRAPCOLS(f,CEILING(ROWS(f)/2,1),""))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,096
Messages
6,123,074
Members
449,093
Latest member
ripvw

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