I have a query that works fine except the order by clause.
The following order by clause I get:
P5
P4
P3
P2
P1
1
2
3
4
5
6
7
8
9
10
I would like the P* values at the bottom:
1
2
3
4
5
6
7
8
9
10
P1
P2
P3
P4
P5
Is this possible?
Cheers,
The following order by clause I get:
Code:
ORDER BY VAL([TABLES Query].TABLENUM);
P4
P3
P2
P1
1
2
3
4
5
6
7
8
9
10
I would like the P* values at the bottom:
1
2
3
4
5
6
7
8
9
10
P1
P2
P3
P4
P5
Is this possible?
Cheers,