excel formula to filter values from an array

Monicasinha

Board Regular
Joined
Dec 26, 2022
Messages
51
Office Version
  1. 365
Platform
  1. Windows
I have data in row and column. I need to filter the data with certain condition. The result should come in single column.
When I use filter formula, it gives results in an array but I need it in a column

I have uploaded image of how my data is arranged and how I want to see the result. Can you pls help.
 

Attachments

  • Screenshot 2023-03-02 103010.png
    Screenshot 2023-03-02 103010.png
    8.8 KB · Views: 17

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Another option without FILTER:
Excel Formula:
=TEXTSPLIT(TEXTJOIN(",",TRUE,A1:E17),,",")

Ignore me, should have looked at what you wrote about "filter the data with certain condition"
 
Upvote 0
Bit late, but another option
Excel Formula:
=TOCOL(IF(A1:K17="",x,A1:K17),2)
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,420
Messages
6,124,803
Members
449,190
Latest member
cindykay

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