Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to split numbers from one cell to make it look like Mac address

How to split the data from one cell to 8 rows in excel

For example: There is given long data in one cell: 65178492194051241284... The sorted values should look like:

65:17:84:92
40:51:24:12

enter image description here

like image 856
Bakhodir Ibragimov Avatar asked Nov 26 '25 12:11

Bakhodir Ibragimov


1 Answers

Excel offers multiple options to help you build your own formula

LEFT is used to extract characters from the LEFT of the string (also MID might be useful in your case) enter image description here https://www.excel-easy.com/examples/substring.html

Combining LEFT/MID with CONCATENATE you should be able to produce the expected output

enter image description here

https://edu.gcfglobal.org/en/excelformulas/using-concatenate-to-combine-names/1/

Something similar to

=CONCATENATE(LEFT(A1,2),':',MID(A1,2,2),':', MID(A1,4,2),.... )
like image 199
Mauricio Gracia Gutierrez Avatar answered Dec 01 '25 09:12

Mauricio Gracia Gutierrez



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!