Perhaps we can start again - there have been a few good suggestions in helping you find the items your looking for. Either using Item Varients to Using more fields to help group(ie. Product Groups + Posting Groups, Custom Fields, etc.)
ABC.01.11.001-SE; if want to get .01.11; I used LEFTSTR(4,6). The characters that I want to get is located at the column 4 and I captured 6 characters, which is .01.11
To my knowledge there is no commenad like this, you would need to filter in the format ???.01.11* to get what you want I believe.
“Filter = Something*” will work.
“Filter = <>Something*” will not work.
I think that has to do with SQL as language. In SQL there is a LIKE clause in WHERE command that is most probably used when you do filtering of that kind.
LIKE is used in same manner as first example.
SELECT * FROM Item WHERE “No.” LIKE ‘Something%’.
This would be translation of first filter. Also you can set NOT LIKE in such a way and get the second filter applied.
But, in Nav, you cann’t.
Even if you set Filter = <>* you’ll get whole recordset again
I suppose there is a logical explanation to this issue but, I cann’t find it
you already had a lot of suggestions here and now you know that this <>A* doesn’t work.
I would just add a way (manual and not so easy) to make the users able to filter the list of items. This are the steps in order to have ABC* excluding *-SE:
filter ABC* and mark the records (select all and press CTRL+F1)
2 remove the filter
3 filter *SE and unmark the records (select all and press CTRL+F1 twice if there are also unmarked record, once if they are all marked)