this is what I get as an error when I use the above code.
[microsoft][ODBC Access Driver] " is not a valid name. Make sure that it does
not include invalid characters or punctuation and that it's not too long.
Mark
[q]
Originally posted by: bregent Quote:
I am at work, adn that was a 1200+ page document |
You are confusing my posts with someone else's. My link is a simple
explanation of sorting ip's in Access. I'll make it easy for you - here's the
sql:
SELECT radio_ip.IP
FROM radio_ip
ORDER BY Val(Left([IP],(InStr(1,[IP],".")-1))),
Val(Mid([IP],InStr(1,[IP],".")+1,InStr(InStr(1,[IP],".")+1,[IP],".")-InStr(1,[IP
],".")-1)),
Val(Mid([IP],InStr(InStr(1,[IP],".")+1,[IP],".")+1,InStr(InStr(InStr(1,[IP],".")
+1,[IP],".")+1,[IP],".")-InStr(InStr(1,[IP],".")+1,[IP],".")-1)),
Val(Right([IP],Len([IP])-InStr(InStr(InStr(1,[IP],".")+1,[IP],".")+1,[IP],".")))
;
[/q]