Sorting records based on number...Null values are being sorted fir

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have been working on an NCAA Database that holds rankings for teams. Keep
in mind I only assign numbers 1-25 for the top 25 teams in the AP Pole.
However there are 97 teams. I would Like to sort 1-25 firts then the teams
that have null numbers are not assigned a ranking fall behind them. How its
working now is all the unranked teams = null values are being listed first
then the bottom 25 are listed 1-25...Can I get around this problem?
 
Put a computed field in there that uses the IsNull function to return True
or False. Sort on that field first, then on the ranking field.
 
Worked Great, did what you said which either returned a value of -1 or 0 and
sorted on that value first.

Thanks Doug.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top