Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I have a trouble with the LOAD part in my script.
I want to do :
if (CODE<>('800','810','830,'410','420','900'), 'Not OK') as [Flow]
But it doesn't work.
Is someone have any solution ?
Thanks !
Hi,
Try With wildmatch()
Like
if (not wildmatch(CODE,'800','810','830,'410','420','900'), 'Not OK') as [Flow]
Regards,
Hi,
Try With wildmatch()
Like
if (not wildmatch(CODE,'800','810','830,'410','420','900'), 'Not OK') as [Flow]
Regards,
Try and write another way
if( NOT Match(CODE,'800','810','830,'410','420','900'), 'Not OK') as [Flow]
IF(NOT MATCH(CODE,'800','810','830','410','420','900'), 'Not OK') as [Flow]
=if ( not match(CODE,'800','810','830','410','420','900'), 'Not OK', 'OK') as Flow
It works !
Thank you everyone