Paste Excel Table into TinyMCE while Keeping Format
You might want to check out the paste plugin. This plugin needs to be configured properly. have a look here for the documentation.
EDIT: Example to log the pasted content:
paste_preprocess : function(pl, o) {
console.log('Object', o);
console.log('Content:', o.content);
}