Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to pull out certain data from a field where the code in that field begins RM, so have the expression, if(UPC='Rm*', 1) but it's not pulling anything out. How do i do a wildcard search for a chart?
Kev
if(wildmatch(UPC,'Rm*'),1) as Flag
or
if( UPC like 'Rm*',1) as Flag
Try this,
If(Wildmatch(UPC,'Rm*'),1)
Or
If(Left(UPC,2)='Rm',1)
May be this:
= if(UPC like 'Rm*', 1)
or
=if(upper(UPC) like 'RM*', 1)