Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to change 2 values to the word ABROAD. Can anyone tell me what's wrong with my syntax?
This code works well:
LOAD Clasificación,
if(Clasificación1='ABA','ABROAD',Clasificación1) as Clasificación1,
This code does not work:
LOAD Clasificación,
if(Clasificación1='ABA' or ERA','ABROAD',Clasificación1) as Clasificación1,
Try this:
LOAD Clasificación,
if(Clasificación1='ABA' or Clasificación1='ERA','ABROAD',Clasificación1) as Clasificación1,
You need to mention field name again after "OR" condition. And you are missing an open single quote for ERA.
Hope this helps.