A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
Try this formula
=choosecols(FILTER(A4:BB166,J4:J166=A2,""),1,2,4,6,12,16,27,45)
Hope this helps.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm using Filter formula : =FILTER(A4:BB166,J4:J166=A2,"").
It will return all the column (A to BB) details as per the filter condition.
but I want only some column ( For E.g. - Column A, B, D, F, L, P, AA & AS) details from the range (A4:BB166) as per my filter condition.
How I can do that ?
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Hi,
Try this formula
=choosecols(FILTER(A4:BB166,J4:J166=A2,""),1,2,4,6,12,16,27,45)
Hope this helps.
Please enlighten me with regard to "Pick".
Easiest would be if you have an empty row above the table headers where you can enter zeros and ones for columns to be excluded and included. Alternatively, insert a row above the table, but that will of course change the references in you original formula.
Let's assume have an empty row 2 available. Enter the number 1 in columns A, B, D, F, L, P, AA & AS on that row and zeros in all other columns through BB or just leave them blank.
Now, change the formula to:
=FILTER(FILTER(A4:BB166,J4:J166=A2,""),A2:BB2)
Only the columns where you entered 1 on row 2 will be displayed.
Thanks Riny_van_Eekelen