Convert decimal number to IP address
If you have a string of decimal numbers such as 192168421 that you need to convert to an IP address as192.168.42.1, how can you quickly solve this job with an Excel formula?
Convert decimal number to IP address with formula
Formula syntax
=MID(number,1,num_of_digit)&"."&MID(number,start_position2,num_of_digit)&"."&MID(number,start_position3,num_of_digit)&"."&MID(number,start_position4,num_of_digit) |
Arguments
|
Here are some examples in below table for you better understanding the formula.
Decimal | IP Address |
Formula |
10255211 | 10.255.22.11 | =MID(C2,1,2)&"."&MID(C2,3,3)&"."&MID(C2,6,2)&"."&MID(C2,8,1) |
172161134 | 172.16.11.34 | =MID(C3,1,3)&"."&MID(C3,4,2)&"."&MID(C3,6,2)&"."&MID(C3,8,2) |
1921681225 | 192.168.1.225 | =MID(C4,1,3)&"."&MID(C4,4,3)&"."&MID(C4,7,1)&"."&MID(C4,8,3) |
17211255255 | 172.11.255.255 | =MID(C5,1,3)&"."&MID(C5,4,2)&"."&MID(C5,6,3)&"."&MID(C5,9,3) |
Sample File
Relative Functions
- Excel DECIMAL function
The DECIMAL function converts a text representation of a number in a base into its equivalent decimal number. Take a instance, 11 is a text representation of 3 in base 2, using the formula =DECIMAL(11,2) convert 11 into decimal number 3.
Relative Formulas
- Excel convert binary to decimal/octal/hex
Provides formulas to convert binary value to decimal value, octal value or hex value. - Convert binary value to decimal/octal/hex
Provides some easy formulas to convert binary value to decimal number, octal value or hex value in Excel. - Convert decimal value to binary/octal/hex
This article introduces the formulas to convert decimal numbers to binary value, octal value or hex value in Excel - Convert hex value to decimal/binary/octal
This article introduces the formulas to convert hexadecimal numbers to decimal valie, binary value, or octal value in Excel
The Best Office Productivity Tools
Kutools for Excel - Helps You To Stand Out From Crowd
Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need is Just A Click Away...

Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)
- One second to switch between dozens of open documents!
- Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
- Increases your productivity by 50% when viewing and editing multiple documents.
- Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Edge and Firefox.
