RE: Wild card search (Parts) Dynamics Nav Classic
SRC,
For Dynamics NAV, simple search in the Description Field could be:
pop = interpreted as: @*pop* Returns =All records that contain the text pop and case insensitive.
me = interpreted as : @*me* Returns =All records that contain the text me and case insensitive.
Cup* = interpreted as: Starts with Cup and case sensitive. Returns =All records that start with the text Cup.
'bad' = interpreted as: An exact text and case sensitive. Returns =All records that match bad exactly.
@she* = interpreted as: Starts with and case insensitive. Returns =All records that start with she.
@*mom = interpreted as: Ends with and case insensitive. Returns =All records that end with mom.
Hope this helps.
Thanks,
Steve