I have a table with 2 fields. We can call them Field1 and Field2
I need to sort the table ascending by the length of Field2. I am having some trouble.
Please help.
Thanks
I have a table with 2 fields. We can call them Field1 and Field2
I need to sort the table ascending by the length of Field2. I am having some trouble.
Please help.
Thanks
I got it. Thanks
So please post your solution, as it might help others.
After all, that is what these forums are about?
Please use # icon on toolbar when posting code snippets.
Cross Posting: https://www.excelguru.ca/content.php?184
Debugging Access: https://www.youtube.com/results?sear...bug+access+vba
Code:SELECT tblQA.Field1, tblQA.Field2, Len(([Field1])) AS Length FROM tblQAORDER BY Len(([Field1]));
Please use # icon on toolbar when posting code snippets.
Cross Posting: https://www.excelguru.ca/content.php?184
Debugging Access: https://www.youtube.com/results?sear...bug+access+vba