Create a column on a new sheet from filter list

DJMini

New Member
Joined
Apr 27, 2018
Messages
8
Hi All,
Wonder if you could help.

I am trying to transfer the list of results from a filter on a column on one sheet and display the list onto another column on another sheet.
For example:
a4f296
to this
a4f2ba


Any ideas?

Thanks
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
How about
=IFERROR(INDEX(Pcode!$G$2:$G$100,MATCH(0,INDEX(COUNTIF(A$1:A1,Pcode!$G$2:$G$100),0),0)),"")
change sheet name in red to suit
 
Upvote 0
Hi Fluff, Thanks for the help, that appears to have worked!

Another issue I have.
I have created this formula: =COUNTIF(AND('Four Winds complete 5837 BS5837'!G:G=A2),('Four Winds complete 5837 BS5837'!K:K=D1)),0),"")
Which takes the results of the formula that you created and uses them as one of the parameters for a countif function. Now, what I am trying to get from the above formula is to count how many "English Oaks" are "Early Mature" (for example). Can you see what I am doing wrong?
a4ff70


Sorry to bother you with this!
 
Upvote 0
Try
=COUNTIFS('Four Winds complete 5837 BS5837'!G:G,A2,'Four Winds complete 5837 BS5837'!K:K,D1)
 
Upvote 0
Thanks Fluff,

One thing...
If the =IFERROR(INDEX(Pcode!$G$2:$G$100,MATCH(0,INDEX(COUNTIF(A$1:A1,Pcode!$G$2:$G$100),0),0)),"") formula is to be used for a column with more than 100 entries do i change the formula to =IFERROR(INDEX(Pcode!$G$2:$G$300,MATCH(0,INDEX(COUNTIF(A$1:A1,Pcode!$G$2:$G$300),0),0)),"")
I have done this and have ended up with duplicates
a514da
 
Upvote 0
Your change is correct, but as you are starting the list in A3, rather than A2 you also need to change this
=IFERROR(INDEX(Pcode!$G$2:$G$300,MATCH(0,INDEX(COUNTIF(A$2:A2,Pcode!$G$2:$G$300),0),0)),"")
 
Upvote 0
Thanks,

Do you know why there is always a 0 at the end of the column? anyway to get rid of it?
 
Upvote 0
It's because the range you are looking at contains blank cells at the end.
Change the $G$300 to the last row of data.
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,843
Members
449,051
Latest member
excelquestion515

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