Forum Discussion
RobCQM
Feb 13, 2023Copper Contributor
Format in Excel constant
We import what are called mac addresses, some are continuous alpha, numerical text and other are formatted we would like the input to be constant in the following format; 18:1B:7E:8G:98:39
six groups of 2 separated by : (colon). Any help appreciated.
1 Reply
Sort By
- Patrick2788Silver Contributor
A formula solution to consider. Presuming there's a MAC address in A1 for example:
=TEXTJOIN(":",,MID(A1,SEQUENCE(6,,1,2),2))