Jul 28, 2005 #1 luisve Programmer Jun 24, 2005 29 US hi! i have this table: column 1 910054180 813054179 812054178 i would like to group the or order them, the desire result will be: 812(054178) 813(054179) 910(054180) i just want to sort by the number inside() not the first 3 digits., tahnks !!
hi! i have this table: column 1 910054180 813054179 812054178 i would like to group the or order them, the desire result will be: 812(054178) 813(054179) 910(054180) i just want to sort by the number inside() not the first 3 digits., tahnks !!
Jul 28, 2005 #2 jbenson001 Programmer Jan 7, 2004 8,172 US Order by Right(<col>, 6) You may need to convert to and int if it is not a numeric column Upvote 0 Downvote