Using CR XI
I have some stock numbers that I need to select. The ones I want start with a "P" and that's simple enough to select
{sales.stockno} startswith "P"
But some of those end in "A" or "AR" or "AW" or "BR"
So want something like ....
{sales.stockno} startswith "P" and
{sales.stockno}does NOT contain "A" or "AR" or "AW" or "BR"
I have some stock numbers that I need to select. The ones I want start with a "P" and that's simple enough to select
{sales.stockno} startswith "P"
But some of those end in "A" or "AR" or "AW" or "BR"
So want something like ....
{sales.stockno} startswith "P" and
{sales.stockno}does NOT contain "A" or "AR" or "AW" or "BR"