I am trying to create an excel tool which would search for specific key words located in a separate sheet and display results (full sentences/paragraphs including those key words). As of now I could only manage to display only the first finding. What I would like to do is to display all findings below each other.
The functions I am using are:
=IFERROR((INDEX(Tabulka!A:A;POZVYHLEDAT(CONCATENATE("*";FINDER!C4;"*";FINDER!C5;"*";FINDER!C6;"*";FINDER!C7;"*";FINDER!C8;"*");Tabulka!A:A;0)));"N/A")
where Tabulka is a sheet where the table with sentences/paragraphs is located and FINDER is a sheet where I define the key words and desplay search results.
There can be more sentences in Tabulka sheet including the same defined key words in FINDER sheet. I want the function to display them all below each other not only the first one as it does now.
Is it possible to solve this issue somehow with and/or without VBA?
Thanks
J.