N
none
I have a field in a table where IP addresses are stored. I would like
to build a query where I getfour columns, each housing one of the
octets of the IP address. So, I would have something lilke
IP_Address, A, B, C, D
12.1.123.4, 12, 1, 123, 4
I have been playing around with the InStr function, but haven't gotten
past the first octet.
A: Left([IP_Address],InStr(1,[IP_Address],".")-1)
Any help would be greatly appreciated!
to build a query where I getfour columns, each housing one of the
octets of the IP address. So, I would have something lilke
IP_Address, A, B, C, D
12.1.123.4, 12, 1, 123, 4
I have been playing around with the InStr function, but haven't gotten
past the first octet.
A: Left([IP_Address],InStr(1,[IP_Address],".")-1)
Any help would be greatly appreciated!