I have multiple cells in excel that consists of an array of 70 points. How can I split each of these numbers in the array into its own row?
For example, currently I have an array as so:
Column A:
[(42.07, -86.03), (42.074092, -87.031812000000002)]
Column B:
[0.00e+00,9.06e+02]
Column C:
[1.69e+01,1.72e+00]
All of these array are on the same row. However, I want it to show up as so in two seperate rows:
(42.07, -86.03) |0.00e+00 |1.69e+01
(42.074092, -87.031812000000002) |9.06e+02 |1.72e+00