This is probably a little stupid, but I really need it. I have a document with 5 tables, each table has a title. The headline is plain text without a special style, nothing. I need to extract data from these tables + plus the header. Currently, using MS interop, I was able to iterate through each cell of each table, using something like this:
app.Tables[1].Cell(2, 2).Range.Text;
But now I'm struggling to figure out how to get the text right above the table. Here is a screenshot: 
For the first table I need to get "I need this text" and for the secnd table I need to get: "And this one too please"
So basically I need the last paragraph before each table. Any suggestions on how to do this?
source share