Comparing two rows in Excel for a particular word and returning the content found in that cell where the word is in a new row

Sailadarohit

New Member
Joined
Sep 7, 2022
Messages
38
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
Platform
  1. Windows
I want to compare two rows in Excel for a particular word and return the entire content found in that cell where the word is present in the new rows.
So i am searching with the word nike in the two rows, the formula should search both the rows for the word nike and if found return the entire content found along with the word nike in the new rows else return NULL.
Row A and B are my inputs, output should look like row C and D
Please refer the attachment for more information.
 

Attachments

  • word_finding.jpg
    word_finding.jpg
    40.9 KB · Views: 9

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Thanks Kerryx for the response. I have some more requirements here, if the rows (A,B) has other data as well along with the search word separated by commas, can i get only that search word return in my result(C,D). Please see the attachment.
 

Attachments

  • q2.jpg
    q2.jpg
    60.6 KB · Views: 4
Upvote 0
Just change formula to

Excel Formula:
=IF(ISERROR(SEARCH("nike",A2,1)),"NULL",LEFT(A2,(FIND(",",A2)-1)))
 
Upvote 0
Just change formula to

Excel Formula:
=IF(ISERROR(SEARCH("nike",A2,1)),"NULL",LEFT(A2,(FIND(",",A2)-1)))
the word can be anywhere, not always it would be on the second position.. it can change.
 
Upvote 0
Hi Kerryx , Could you pls help me with the question which i have asked above
 
Upvote 0
Any SEARCH("nike",... type formula would find a match in the cell below, which I assume would not be what is wanted?

1663569166603.png


If I am correct, can we assume that the word being searched for is always preceded and followed by an underscore? That is, the word would never be the first or last word in a section?

In your 365/2021 versions, do you have the TEXTSPLIT function? That is, if you begin to type =TEXT into an empty cell, do you get this option appear?

1663569086275.png


Could the word being searched for ever appear more than once in a cell? If so, can you give an example and include the expected result?
 
Upvote 0
The word is always preceded by an underscore but not always we can assume that is followed by an underscore.
For work purposed i have to use Excel 2016 so no TEXTSPLIT

Thanks in advance
 
Upvote 0
The word is always preceded by an underscore but not always we can assume that is followed by an underscore.
So, could we have some sample data and expected results that show the variety that can occur? Using XL2BB will likely get you more helpers and faster answers as we can then copy the data to test with. Many potential helpers will just bypass your thread if they have to manually type out sample data. ;)

What about my other question?
Could the word being searched for ever appear more than once in a cell? If so, can you give an example and include the expected result?
 
Upvote 0
Hi Peter, I have tried doing this for adding XL2BB but microsoft is not allowing me to use that.. at one point i did turn off windows defender then also it did not work but i dont think its good for my privacy & security to turn off the defender.

I am stuck with the above problem and I have to deliver it on priority..could you pls help
For the other part of question which i missed.. Could the word being searched for ever appear more than once in a cell--No it won't appear

Please find the snippet attached.
I want to compare two rows in Excel for a particular word and return only the content found in that cell where the word is present in the new rows.
So i am searching with the word nike in the two rows, the formula should search both the rows for the word nike and if found return the entire content found along with the word nike in the new rows else return NULL

if possible pls provide solutions using TEXTSPLIT and a solution for Excel 2016 as there is no TEXTSPLIT option
 

Attachments

  • work.jpg
    work.jpg
    79 KB · Views: 2
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,739
Members
449,050
Latest member
excelknuckles

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