Hi everyone
I have a database which receives nominations for an awards ceremony. I would like to filter these nominations using a query which shows only the nominations which meet a certain word length (>500).
Currently, I have this as my query, but I realised this is actually filtering based on 500 characters rather than words.
Any ideas for how to change this to words instead?
Many thanks!
I have a database which receives nominations for an awards ceremony. I would like to filter these nominations using a query which shows only the nominations which meet a certain word length (>500).
Currently, I have this as my query, but I realised this is actually filtering based on 500 characters rather than words.
Code:
SELECT nominations.nomination, Len([nomination]) AS MemoLength
FROM nominations
WHERE (((Len([nomination]))>500));
Any ideas for how to change this to words instead?
Many thanks!
