I need all Blockchain data in text format is basically what I am saying and then I need to have that shown preferably in a gui program in which I can use Ctrl F to find specific transactions.
That is basically what block explorers do, they create a database from the blockchain data and index it in a way that you could search it. There are open source block explorer projects on github which you can find with a quick search.
This functionality seems to be only available in the CLI, so open a terminal and type bitcoin-cli dumpwallet <wallet name> . The output is going to be in pseudo-CSV format.
That would export the wallet file information not the blockchain data.