IP Address in cells

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to copy a range of IP addresses thusly:

In column 3 is the 3rd octet. In column 4 is the 4th octet. The first two
octets are static. I want to append the first two octets with the 3rd and
4th, row by row. What is a formula that will accomplish this?
 
Assuming they start in row 1, place either of these this in E1:

=CONCATENATE(A1,".",B1,".",C1,".",D1)
=A1&"."&B1&"."&C1&"."&D1
 
Back
Top