Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Sirs ,
How to compose this in load script ?
if
Field1 = abc And Field2 = 123 ,Field3 = 12a AND Field4 not be having a , c OR k then ' 1ST Attempt' as Field_New
if
Field1 = abc And Field2 = 123 ,Field3 not equals to 12a AND Field4 not be having a , c, k but Field4 has b , q then ' 2ndttempt' as Field_New
Thank you all in advance !!
My bad, may be this
If(Field1 = 'abc' and Field2 = 123 and Field3 = '12a' and not Match(Field4, 'a', 'c', 'k'), '1st Attempt',
If(Field1 = 'abc' and Field2 = 123 and Field3 <> '12a' and Match(Field4, 'b', 'q'), '2nd Attempt')) as Field_new
If Field4 is b and q... then it will def not be a, c, k.. so you don't really need not Match(Field4, 'a', 'c', 'k')
May be this
If(Field1 = 'abc' and Field2 = 123 and Field3 = '12a' and not Match(Field4, 'a', 'c', 'k'), '1st Attempt',
If(Field1 = 'abc' and Field2 = 123 and Field3 <> '12a' and not Match(Field4, 'a', 'c', 'k'), '2nd Attempt')) as Field_new
Thank you Sir ,
how to set this part
Field1 = abc And Field2 = 123 ,Field3 not equals to 12a AND Field4 not be having a , c, k but
Field4 has b , q then ' 2ndttempt' as Field_New
My bad, may be this
If(Field1 = 'abc' and Field2 = 123 and Field3 = '12a' and not Match(Field4, 'a', 'c', 'k'), '1st Attempt',
If(Field1 = 'abc' and Field2 = 123 and Field3 <> '12a' and Match(Field4, 'b', 'q'), '2nd Attempt')) as Field_new
If Field4 is b and q... then it will def not be a, c, k.. so you don't really need not Match(Field4, 'a', 'c', 'k')
Thank you Sir