Forum Discussion
Excel Formulas and functions Vlookup for partial search and multiple conditions and OR condition
- Jan 27, 2024
Thanks! The formula should be entered in a single cell, and there should be enough empty cells below it for the result.
See the attached version.
=FILTER(ChreosdataA!A2:A1000, (ISNUMBER(SEARCH("AFR", ChreosdataA!A2:A1000))+ISNUMBER(SEARCH("CCH", ChreosdataA!A2:A1000)))*ISNUMBER(SEARCH("Air Freshener", ChreosdataA!C2:C1000)), "")
If you have more than 1000 rows of data, expand the ranges in the formula
- davids4500Sep 30, 2024Copper Contributor
HI
I need to remove the crossed out section, what modification to the formula do i need to make?
=FILTER(ChreosdataA!A2:A1000, (ISNUMBER(SEARCH("AFR", ChreosdataA!A2:A1000))+I
SNUMBER(SEARCH("CCH", ChreosdataA!A2:A1000)))*ISNUMBER(SEARCH("Air Freshener", ChreosdataA!C2:C1000)), "")Thank you david
- HansVogelaarOct 01, 2024MVP
This should do it:
=FILTER(ChreosdataA!A2:A1000, ISNUMBER(SEARCH("AFR", ChreosdataA!A2:A1000))*ISNUMBER(SEARCH("Air Freshener", ChreosdataA!C2:C1000)), "")
- davids4500Oct 07, 2024Copper Contributor
Dear Hans Much appreciated and yes it is successful.
Just to change it to another scenerio I have a creditor names in column C43:C72, I have dates in column E43:E72 and I have $ values in Column G43:G72.
The formula is =SUMPRODUCT($G$43:$G$72,--(MONTH($E$43:$E$72)=9))
and I need to add if column C43:C72 = "Creditor". How do I do that. Much appreciated
David
- davids4500Jan 27, 2024Copper Contributor
Hi.Thank you for the formula. However, i receive a #SPILL as a return
I have attached part of the spreadsheet that I am using with the relevant columns.
Thanking you
David
- HansVogelaarJan 27, 2024MVP
Thanks! The formula should be entered in a single cell, and there should be enough empty cells below it for the result.
See the attached version.
- davids4500Jan 28, 2024Copper Contributor
HansVogelaar Well this is so good. Worked perfectly and just what I needed.
Much appreciated and thank you for taking time.
David