When you paste it into Excel it'll paste it in as a big string of text. Luckily the two things you want are on the right side of the text. You can easily enough extract them using excel's "right" and "left" functions. To extract the draw odds you can use the code "=LEFT(RIGHT(A1,5),2)" and to extract the success rate just use the code "=RIGHT(A1,2)" assuming your data is in cell A1. Does that help?
You nailed it! Thanks