S
skullaria
I was able to use text to columns and some math to get IP dotted quad numbers
into columns. Now I need to take the processed data output excel file and
get the ipnumbers back to dotted quad.
I know the math:
To reverse IP number to IP address,
w = int ( IP Number / 16777216 ) % 256
x = int ( IP Number / 65536 ) % 256
y = int ( IP Number / 256 ) % 256
z = int ( IP Number ) % 256
where % is the mod operator and int is return the integer part of the
division.
But how do I do this in excel? I'm rather lost.
into columns. Now I need to take the processed data output excel file and
get the ipnumbers back to dotted quad.
I know the math:
To reverse IP number to IP address,
w = int ( IP Number / 16777216 ) % 256
x = int ( IP Number / 65536 ) % 256
y = int ( IP Number / 256 ) % 256
z = int ( IP Number ) % 256
where % is the mod operator and int is return the integer part of the
division.
But how do I do this in excel? I'm rather lost.