how to find the data from an excel sheet for an example I will tell, in chatbot the users are asking some questions. that we have to read and search that particular data what we stored in excel & again we have to send data to users. how to do?
Read your excel file and apply this logic on your column where you have this particular transcript.
This is one the way of doing what you are trying to achievve.
Hope this helps you.
Assuming you have a dt as datatable.
Response=(from dr as datarow in dt where dr.item("Transcript column name").tostring.trim.contains(UserInputKeyWords) select dr)(0)("Transcript column name")
The above line of code will give you first result that matches your criteria defined by user.