Question : Query to sort by length of text data

I need a query the sorts Inventory by the length of the text data in the Component_Num field and only return records that are over 32 characters in length.
How do I do this?

Below query sorts by length but returns all records.  I only want those records where component_Num >32
1:
2:
3:
SELECT Inventory.Component_Num
FROM Inventory
ORDER BY Len(Inventory.Component_Num);

Answer : Query to sort by length of text data

SELECT Inventory.Component_Num

FROM Inventory

WHERE Len(Inventory.Component_Num) > 32

ORDER BY Len(Inventory.Component_Num);

Random Solutions  
 
programming4us programming4us