Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
i wrote in the script the next line:
=if(Match([destinetion],'3' and [target],'A'),'123')
but i get nothing in the result.
when i separate it it's o,k.
please help me.
thanks'
Try this
=if(Match(destination,'3' )and Match( [target],'A'),'123')
HI
plee see the attachement.
since within match() function we does not take and operator.
and match() function work on selection.
hope this helps you.
=if(Match(destination,'3') and MATCH(target,'A'),'123')