Hi All,
Thanks for helping me out on all queries. I'm new to Alteryx and coding so curious and learning new everyday. Pardon me for lame questions.
I've a data of 3000 rows which include tons of books to name it simply let's say A,B,C,D....,X,Y,Z. I want to design a code wherein only for book let's say X and Y i want the Pod to be changed to TRS from existing name mentioned on it. But i don't want Pod to be changed for any other book. It should remain as it is.
Now, based on the guidance from one of fellow community member we designed the code.
IF [Book] = "X" OR [Book] = "Y" THEN "TRS" ELSE Null() ENDIF
Now, with this code its impacting all other books i've in my data and overwriting POD to Null which i don't want. I want other books POD to remain as it is.
Can someone please enlighten me, how can we make it on sample of data from exhaustive data?
Thanks a lot !