A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
F2: =FILTER(A2:B9,(LEFT(B2:B9,2)=LEFT(D2,2))+(LEFT(B2:B9,2)=RIGHT(D2,2)))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a data set that has one cell that could contain multiple data. In most situations I would be only selecting one item but there is one time when I want to select cells that contain one item OR another.
The data that could be in this cell is: "Optional" "Critical" "Required" "Input". I want to be able to select cells singly based on a entered cell except in one case. That requires that I see all cells with both "Critical" or "Required" at one time.
I have everything working except the "Critical" or "Required" using this formula.
((ISNUMBER(SEARCH(LEFT(Selection_Transaction_Type,2),Transactions!Transaction_Type)+(ISNUMBER(SEARCH(RIGHT(Selection_Transaction_Type,2),Transactions!Transaction_Type)) where Transactions!transaction_type is my data and Selection_Transaction_Type is my selection cell.
Everything works fine but the "OR". The Selection cell contains "CrRe" which I thought should give me all cells with either "Critical" or "Required" but it doesn't.
Thanks,
TheOldPuterMan
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.
Something like
=FILTER(range, ISNUMBER(SEARCH(LEFT(Selection_Transaction_Type, 2), Transaction_Type))+ISNUMBER(SEARCH(RIGHT(Selection_Transaction_Type, 2), Transaction_Type)), "")
(Perhaps use Transactions!Transaction_Type but I don't know if that is really necessary)
Hi,
Share some data to work with and show the expected result. Share data in a format that can be pasted in an MS Excel file.