i have a table , which has two columns id and text. This is what data i have:
id text
765 hi how are you
876 John made $57.
743 apple is my favourite fruit.
435 mango is not my favorite fruit.
892 this is my favourite movie
have input column as slicer,in which i can choose any one id.for eg: 743
-765
-876
-**743**
-435
-892
I need the output, in which it would show the id ,text,number of words matching of the selected id from slicer with all the other ids:
id text matching words
743 apple is my favourite fruit. 5
765 hi how are you 0
876 John made $57. 0
435 mango is not my favorite fruit. 4
892 this is my favourite movie 3


