I have a query and I have the abilitiy to sort that query on three fields. Some of the records might not have data in all three field e.g.:
column1 column2 column3
1 23 3
3 12 2
1 43
If I sort ascending on column3, row no 3 will show up first becuase it's blank. I want it to be at the end instead but the other two sorted ascended way.
This should be a quite common problem I guess?
column1 column2 column3
1 23 3
3 12 2
1 43
If I sort ascending on column3, row no 3 will show up first becuase it's blank. I want it to be at the end instead but the other two sorted ascended way.
This should be a quite common problem I guess?