I am trying to split a cell with coordinates like 01.00000, 02.00000; 03.00000, 04.00000; 05.00000, 06.00000
into two columns LAT and LONG.
In the first column, all Latitude
In the second column, all Longitude
Like
| Col A | Col B | Col C |
|------------------------------------------------------------|----------------------------|----------------------------|
| 01.00000, 02.00000; 03.00000, 04.00000; 05.00000, 06.00000 | 01.00000,03.00000,05.00000 | 02.00000,04.00000,06.00000 |
I use the division formula if only one coordinates are written
=ArrayFormula(IF(ROW(B1:B)=1,"LNG LTD",IF(ISBLANK(A1:A),"",SPLIT(A1:A, ","))))
But I don’t know how to combine the rest now (I don’t really understand how it would be possible to combine everything together with CONCATENATE)